forked from TrueCloudLab/restic
cache: fix race condition in cache cleanup
Fix multiple restic processes executing concurrently and racing to remove obsolete snapshots. Co-authored-by: Michael Eischer <michael.eischer@fau.de>
This commit is contained in:
parent
9386acc4a6
commit
8c1d6a50c1
2 changed files with 11 additions and 0 deletions
7
changelog/unreleased/pull-5047
Normal file
7
changelog/unreleased/pull-5047
Normal file
|
@ -0,0 +1,7 @@
|
|||
Bugfix: Fix possible error on concurrent cache cleanup
|
||||
|
||||
Fix for multiple restic processes executing concurrently and racing to
|
||||
remove obsolete snapshots from the local backend cache. Restic now suppresses the `no
|
||||
such file or directory` error.
|
||||
|
||||
https://github.com/restic/restic/pull/5047
|
4
internal/backend/cache/file.go
vendored
4
internal/backend/cache/file.go
vendored
|
@ -211,6 +211,10 @@ func (c *Cache) list(t restic.FileType) (restic.IDSet, error) {
|
|||
dir := filepath.Join(c.path, cacheLayoutPaths[t])
|
||||
err := filepath.Walk(dir, func(name string, fi os.FileInfo, err error) error {
|
||||
if err != nil {
|
||||
// ignore ErrNotExist to gracefully handle multiple processes clearing the cache
|
||||
if errors.Is(err, os.ErrNotExist) {
|
||||
return nil
|
||||
}
|
||||
return errors.Wrap(err, "Walk")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue