2023-01-08 14:34:30 +00:00
|
|
|
Enhancement: Inform about successful retries after errors
|
2020-03-21 23:00:09 +00:00
|
|
|
|
2023-01-08 14:34:30 +00:00
|
|
|
When a recoverable error is encountered, restic shows a warning message saying
|
|
|
|
that it's retrying, e.g.:
|
2020-03-21 23:00:09 +00:00
|
|
|
|
2023-01-08 14:34:30 +00:00
|
|
|
`Save(<data/956b9ced99>) returned error, retrying after 357.131936ms: ...`
|
2020-03-21 23:00:09 +00:00
|
|
|
|
2023-01-08 14:34:30 +00: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-21 23:00:09 +00:00
|
|
|
|
2023-01-08 14:34:30 +00:00
|
|
|
`Save(<data/956b9ced99>) operation successful after 1 retries`
|
2020-03-21 23:00:09 +00:00
|
|
|
|
|
|
|
https://github.com/restic/restic/issues/1734
|
|
|
|
https://github.com/restic/restic/pull/2661
|