mirror of
https://github.com/octoleo/restic.git
synced 2024-12-24 11:55:28 +00:00
cache: check for context cancellation before clearing cache
This commit is contained in:
parent
f66624f5bf
commit
a23e7bfb82
4
internal/backend/cache/backend.go
vendored
4
internal/backend/cache/backend.go
vendored
@ -247,6 +247,10 @@ func (b *Backend) List(ctx context.Context, t backend.FileType, fn func(f backen
|
||||
return err
|
||||
}
|
||||
|
||||
if ctx.Err() != nil {
|
||||
return ctx.Err()
|
||||
}
|
||||
|
||||
// clear the cache for files that are not in the repo anymore, ignore errors
|
||||
err = b.Cache.Clear(t, ids)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user