From 723247c8e50f92dde4389564956d784ae6760460 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Mon, 20 May 2024 20:37:28 +0200 Subject: [PATCH] add changelog for longer retries --- changelog/unreleased/issue-4627 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog/unreleased/issue-4627 b/changelog/unreleased/issue-4627 index 95c9d4bc4..6f6a00098 100644 --- a/changelog/unreleased/issue-4627 +++ b/changelog/unreleased/issue-4627 @@ -9,7 +9,9 @@ downloading are now forcibly interrupted. This ensures that stuck requests are 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. +This avoids unnecessary retries in those cases. All other backend requests are +retried for up to 15 minutes. This ensures that a temporarily interrupted network +connections can be tolerated. If a download yields a corrupt file or blob, then the download will be retried once. @@ -26,3 +28,4 @@ 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 +https://github.com/restic/restic/pull/4784