]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
wcurl: update to v2025.05.26
authorSamuel Henrique <samueloph@debian.org>
Mon, 26 May 2025 21:46:24 +0000 (22:46 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 27 May 2025 07:29:43 +0000 (09:29 +0200)
This release fixes a small issue with the retry strategy:

 * Increase number of retries to 5 (32 sec total time), fixing the
   problem with misleading output. Previously, it was showing a higher
   number of retries than what would be done and it always did only 3.

Closes #17461

scripts/wcurl

index 35fcb8a5c36795bc3e2605d44c9cafd9c8dde58e..af66ae7fcac75fb7a8a47e9654bc6a2e03264388 100755 (executable)
@@ -29,7 +29,7 @@
 # Stop on errors and on usage of unset variables.
 set -eu
 
-VERSION="2025.04.20"
+VERSION="2025.05.26"
 
 PROGRAM_NAME="$(basename "$0")"
 readonly PROGRAM_NAME
@@ -111,8 +111,7 @@ readonly PER_URL_PARAMETERS="\
     --location \
     --proto-default https \
     --remote-time \
-    --retry 10 \
-    --retry-max-time 10 "
+    --retry 5 "
 
 # Whether to invoke curl or not.
 DRY_RUN="false"