2021-08-02 21:49:16 +00:00
|
|
|
Bugfix: Improve error handling for rclone and REST backend over HTTP2
|
2021-07-10 20:39:01 +00:00
|
|
|
|
2021-08-02 08:12:55 +00:00
|
|
|
When retrieving data from the rclone / REST backend while also using HTTP2
|
2021-07-10 20:39:01 +00:00
|
|
|
restic did not detect when no data was returned at all. This could cause
|
|
|
|
for example the `check` command to report the following error:
|
2021-08-02 08:12:55 +00:00
|
|
|
|
|
|
|
Pack ID does not match, want [...], got e3b0c442
|
2021-07-10 20:39:01 +00:00
|
|
|
|
2021-08-02 21:49:16 +00:00
|
|
|
This has been fixed by correctly detecting and retrying the incomplete download.
|
2021-07-10 20:39:01 +00:00
|
|
|
|
|
|
|
https://github.com/restic/restic/issues/2742
|
|
|
|
https://github.com/restic/restic/pull/3453
|
|
|
|
https://forum.restic.net/t/http2-stream-closed-connection-reset-context-canceled/3743/10
|