vfs: fill and clean the cache immediately on startup

This commit is contained in:
Nick Craig-Wood 2018-02-02 12:19:53 +00:00
parent 3f8d286a75
commit 295c3fabec
1 changed files with 3 additions and 0 deletions

View File

@ -387,6 +387,9 @@ func (c *cache) clean() {
//
// doesn't return until context is cancelled
func (c *cache) cleaner(ctx context.Context) {
// Start cleaning the cache immediately
c.clean()
// Then every interval specified
timer := time.NewTicker(c.opt.CachePollInterval)
defer timer.Stop()
for {