From 164b4cb2f64a55067512cc210f923953a6f1ebaa Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Fri, 6 Nov 2020 10:05:42 +0100 Subject: [PATCH] Add changelog for #3014 --- changelog/unreleased/pull-3014 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 changelog/unreleased/pull-3014 diff --git a/changelog/unreleased/pull-3014 b/changelog/unreleased/pull-3014 new file mode 100644 index 000000000..069ca40d1 --- /dev/null +++ b/changelog/unreleased/pull-3014 @@ -0,0 +1,12 @@ +Bugfix: Fix sporadic stream reset between rclone and restic + +Sometimes when using restic with the rclone backend, an error message similar to the following is printed: + + Didn't finish writing GET request (wrote 0/xxx): http2: stream closed + +It was found that this is caused by restic closing the connection to rclone +when downloading data too fast. A workaround was added which waits for the end +of the download before closing the connection. + +https://github.com/restic/restic/pull/3014 +https://github.com/rclone/rclone/issues/2598