retry-delay.d 618 B

12345678910111213141516
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: retry-delay
  4. Arg: <seconds>
  5. Help: Wait time between retries
  6. Added: 7.12.3
  7. Category: curl
  8. Example: --retry-delay 5 --retry $URL
  9. See-also: retry
  10. ---
  11. Make curl sleep this amount of time before each retry when a transfer has
  12. failed with a transient error (it changes the default backoff time algorithm
  13. between retries). This option is only interesting if --retry is also
  14. used. Setting this delay to zero will make curl use the default backoff time.
  15. If this option is used several times, the last one will be used.