mirror of https://github.com/restic/restic.git
Merge pull request #2019 from restic/recheck-cache
cache: Recheck before downloading
This commit is contained in:
commit
233596f4bc
|
@ -106,6 +106,11 @@ func (b *Backend) cacheFile(ctx context.Context, h restic.Handle) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// test again, maybe the file was cached in the meantime
|
||||||
|
if !b.Cache.Has(h) {
|
||||||
|
|
||||||
|
// nope, it's still not in the cache, pull it from the repo and save it
|
||||||
|
|
||||||
err := b.Backend.Load(ctx, h, 0, 0, func(rd io.Reader) error {
|
err := b.Backend.Load(ctx, h, 0, 0, func(rd io.Reader) error {
|
||||||
return b.Cache.Save(h, rd)
|
return b.Cache.Save(h, rd)
|
||||||
})
|
})
|
||||||
|
@ -113,6 +118,7 @@ func (b *Backend) cacheFile(ctx context.Context, h restic.Handle) error {
|
||||||
// try to remove from the cache, ignore errors
|
// try to remove from the cache, ignore errors
|
||||||
_ = b.Cache.Remove(h)
|
_ = b.Cache.Remove(h)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// signal other waiting goroutines that the file may now be cached
|
// signal other waiting goroutines that the file may now be cached
|
||||||
close(finish)
|
close(finish)
|
||||||
|
@ -122,7 +128,7 @@ func (b *Backend) cacheFile(ctx context.Context, h restic.Handle) error {
|
||||||
delete(b.inProgress, h)
|
delete(b.inProgress, h)
|
||||||
b.inProgressMutex.Unlock()
|
b.inProgressMutex.Unlock()
|
||||||
|
|
||||||
return err
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// loadFromCacheOrDelegate will try to load the file from the cache, and fall
|
// loadFromCacheOrDelegate will try to load the file from the cache, and fall
|
||||||
|
|
Loading…
Reference in New Issue