diff options
| author | Julian Andres Klode <jak@debian.org> | 2021-07-29 14:56:41 +0000 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2021-07-29 14:56:41 +0000 |
| commit | 410a6d9d84136fc0bc8c50551313c036ae99aafa (patch) | |
| tree | 4628570893082a286fbde80a1acfa27d4a30c012 /doc | |
| parent | 544d81a26f8c97a2a45262aecbaef4a5b43fb325 (diff) | |
| parent | 3ca5e18b1f0bb05697ccca7c98ced1176166024a (diff) | |
Merge branch 'pu/fetch-at' into 'main'
Main-process-side implementation of retry back-off
See merge request apt-team/apt!181
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/examples/configure-index | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/examples/configure-index b/doc/examples/configure-index index 312ee27d6..4eca100f5 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -230,7 +230,11 @@ APT Acquire { Queue-Mode "<STRING>"; // host or access - Retries "<INT>"; + Retries "<INT>" { + Delay "<BOOL>" { // whether to backoff between retries using the delay: method + Maximum "<INT>"; // maximum number of seconds to delay an item per retry + }; + }; Source-Symlinks "<BOOL>"; ForceHash "<STRING>"; // hashmethod used for expected hash: sha256, sha1 or md5sum Send-URI-Encoded "<BOOL>"; // false does the old encode/decode dance even if we could avoid it @@ -555,6 +559,7 @@ Debug Acquire::cdrom "<BOOL>"; // Show cdrom debug output Acquire::Transaction "<BOOL>"; Acquire::Progress "<BOOL>"; + Acquire::Retries "<BOOL>"; // Debugging for retries, especially delays aptcdrom "<BOOL>"; // Show found package files IdentCdrom "<BOOL>"; acquire::netrc "<BOOL>"; // netrc parser |
