2
2
mirror of https://github.com/octoleo/restic.git synced 2024-12-01 17:23:57 +00:00
restic/changelog/0.17.1_2024-09-05/issue-4970

16 lines
616 B
Plaintext
Raw Normal View History

Enhancement: Make timeout for stuck requests customizable
2024-08-30 12:58:32 +00:00
Restic monitors connections to the backend to detect stuck requests. If a
request does not return any data within five minutes, restic assumes the
request is stuck and retries it. However, for large repositories this timeout
might be insufficient to collect a list of all files, causing the following
error:
`List(data) returned error, retrying after 1s: [...]: request timeout`
2024-08-31 15:28:24 +00:00
It is now possible to increase the timeout using the `--stuck-request-timeout`
option.
https://github.com/restic/restic/issues/4970
https://github.com/restic/restic/pull/5014