restic/changelog/0.15.0_2023-01-12/issue-1734

16 lines
600 B
Plaintext
Raw Normal View History

2023-01-08 15:34:30 +01:00
Enhancement: Inform about successful retries after errors
2020-03-22 00:00:09 +01:00
2023-01-08 15:34:30 +01:00
When a recoverable error is encountered, restic shows a warning message saying
that it's retrying, e.g.:
2020-03-22 00:00:09 +01:00
2023-01-08 15:34:30 +01:00
`Save(<data/956b9ced99>) returned error, retrying after 357.131936ms: ...`
2020-03-22 00:00:09 +01:00
2023-01-08 15:34:30 +01:00
This message can be confusing in that it never clearly states whether the retry
is successful or not. This has now been fixed such that restic follows up with
a message confirming a successful retry, e.g.:
2020-03-22 00:00:09 +01:00
2023-01-08 15:34:30 +01:00
`Save(<data/956b9ced99>) operation successful after 1 retries`
2020-03-22 00:00:09 +01:00
https://github.com/restic/restic/issues/1734
https://github.com/restic/restic/pull/2661