retry-delay.md (591B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: retry-delay 5 Arg: <seconds> 6 Help: Wait time between retries 7 Added: 7.12.3 8 Category: curl timeout 9 Multi: single 10 See-also: 11 - retry 12 Example: 13 - --retry-delay 5 --retry 7 $URL 14 --- 15 16 # `--retry-delay` 17 18 Make curl sleep this amount of time before each retry when a transfer has 19 failed with a transient error (it changes the default backoff time algorithm 20 between retries). This option is only interesting if --retry is also 21 used. Setting this delay to zero makes curl use the default backoff time.