Merge pull request #4761 from MichaelEischer/fix-cache-race

cache: ignore ErrNotExist during cleanup of old files
This commit is contained in:
Michael Eischer
2024-04-22 21:46:06 +02:00
committed by GitHub
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
Bugfix: Fix possible error on concurrent cache cleanup
If multiple restic processes concurrently cleaned up no longer existing files
from the cache, this could cause some of the processes to fail with an `no such
file or directory` error. This has been fixed.
https://github.com/restic/restic/issues/4760
https://github.com/restic/restic/pull/4761