From 4042db516950f1b644787a41f60bf6327fad6f1e Mon Sep 17 00:00:00 2001 From: Fred Date: Sat, 21 Mar 2020 23:00:09 +0000 Subject: [PATCH] Add changelog --- changelog/unreleased/issue-1734 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 changelog/unreleased/issue-1734 diff --git a/changelog/unreleased/issue-1734 b/changelog/unreleased/issue-1734 new file mode 100644 index 000000000..e1d65aa6b --- /dev/null +++ b/changelog/unreleased/issue-1734 @@ -0,0 +1,16 @@ +Enhancement: "Everything is ok" message after retrying + +When a recoverable error is encountered, restic displays a warning message +saying it's retrying, like this one: + +Save() returned error, retrying after 357.131936ms: CreateBlockBlobFromReader: Put https://example.blob.core.windows.net/restic/data/95/956b9ced99...aac: write tcp 192.168.11.18:51620->1.2.3.4:443: write: connection reset by peer + +This message can be a little confusing because it seems like there was an +error, but we're not sure if it was actually fixed by retrying. + +restic is now displaying a confirmation that the action was successful after retrying: + +Save() operation successful after 1 retries + +https://github.com/restic/restic/issues/1734 +https://github.com/restic/restic/pull/2661