2020-11-06 09:05:42 +00:00
|
|
|
Bugfix: Fix sporadic stream reset between rclone and restic
|
|
|
|
|
2021-02-13 23:57:54 +00:00
|
|
|
Sometimes when using restic with the `rclone` backend, an error message
|
|
|
|
similar to the following would be printed:
|
2020-11-06 09:05:42 +00:00
|
|
|
|
|
|
|
Didn't finish writing GET request (wrote 0/xxx): http2: stream closed
|
|
|
|
|
2021-02-13 23:57:54 +00:00
|
|
|
It was found that this was caused by restic closing the connection to rclone
|
|
|
|
to soon when downloading data. A workaround has been added which waits for
|
|
|
|
the end of the download before closing the connection.
|
2020-11-06 09:05:42 +00:00
|
|
|
|
|
|
|
https://github.com/restic/restic/pull/3014
|
|
|
|
https://github.com/rclone/rclone/issues/2598
|