From 5f23baabccb561d663db5e82e396447d2a0b3766 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Sat, 18 May 2024 23:03:24 +0200 Subject: [PATCH] add retries for corrupted blobs to changelog --- changelog/unreleased/issue-4627 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog/unreleased/issue-4627 b/changelog/unreleased/issue-4627 index d97054535..95c9d4bc4 100644 --- a/changelog/unreleased/issue-4627 +++ b/changelog/unreleased/issue-4627 @@ -11,6 +11,8 @@ retried after a short timeout. Attempts to access a missing file or a truncated file will no longer be retried. This avoids unnecessary retries in those cases. +If a download yields a corrupt file or blob, then the download will be retried once. + Most parts of the new backend error handling can temporarily be disabled by setting the environment variable `RESTIC_FEATURES=backend-error-redesign=false`. Note that this feature flag will @@ -23,3 +25,4 @@ https://github.com/restic/restic/pull/4792 https://github.com/restic/restic/issues/4515 https://github.com/restic/restic/issues/1523 https://github.com/restic/restic/pull/4520 +https://github.com/restic/restic/pull/4800