Merge pull request #5251 from MichaelEischer/rclone-retries

Retry temporary rclone backend errors
This commit is contained in:
Michael Eischer
2025-03-22 14:24:47 +01:00
committed by GitHub
20 changed files with 138 additions and 105 deletions

View File

@@ -0,0 +1,9 @@
Enhancement: Improve handling of flaky rclone backends
Since restic 0.17.0, the backend retry mechanisms relies on backends correctly
reporting when a file does not exist. This is not always the case for some rclone
backends, causing restic to stop retrying after the first failure.
For rclone, failed requests are now retried up to 5 times before giving up.
https://github.com/restic/restic/pull/5251