10 lines
419 B
Plaintext
Raw Normal View History

Enhancement: Improve retry handling for flaky `rclone` backends
2025-02-17 21:33:35 +01:00
Since restic 0.17.0, the backend retry mechanisms rely on backends correctly
reporting when a file does not exist. This is not always the case for some
`rclone` backends, which caused restic to stop retrying after the first failure.
2025-02-17 21:33:35 +01:00
For rclone, failed requests are now retried up to 5 times before giving up.
https://github.com/restic/restic/pull/5251