mirror of
https://github.com/octoleo/restic.git
synced 2024-11-14 17:24:10 +00:00
0747cf5319
Two restic processes running concurrently can try to remove the same files from the cache. This could cause one process to fail with an error if the other one has already remove a file that the current process also tries to delete.
9 lines
350 B
Plaintext
9 lines
350 B
Plaintext
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
|