Merge pull request #4520 from awannabeengineer/load-retry-nonexistent

retry: Do not retry Load() if file does not exist
This commit is contained in:
Michael Eischer
2023-10-25 20:42:05 +00:00
committed by GitHub
3 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
Change: Don't retry to load files that don't exist
Restic used to always retry to load files. It now only retries to load
files if they exist.
https://github.com/restic/restic/issues/4515
https://github.com/restic/restic/issues/1523
https://github.com/restic/restic/pull/4520