]> granicus.if.org Git - curl/commitdiff
curl: make use of CURLINFO_RETRY_AFTER when retrying
authorDaniel Stenberg <daniel@haxx.se>
Tue, 6 Aug 2019 09:57:02 +0000 (11:57 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 7 Aug 2019 12:45:44 +0000 (14:45 +0200)
If a Retry-After: header was used in the response, that value overrides
other retry timing options.

Fixes #3794
Closes #4195

docs/cmdline-opts/retry.d
src/tool_operate.c

index 32d1c799bfadf0dfff9b4b6aaa45f977866df76c..3db89b71c033ebe62b180b0c6241dc14fecd2a04 100644 (file)
@@ -14,4 +14,7 @@ for all forthcoming retries it will double the waiting time until it reaches
 using --retry-delay you disable this exponential backoff algorithm. See also
 --retry-max-time to limit the total time allowed for retries.
 
+Since curl 7.66.0, curl will comply with the Retry-After: response header if
+one was present to know when to issue the next retry.
+
 If this option is used several times, the last one will be used.
index 923b5a99dda9b81a02389a1f1decd7fb6cc22eda..01ee200615b1db14b763fbf7e870ae900d08d6a1 100644 (file)
@@ -496,6 +496,8 @@ static CURLcode post_transfer(struct GlobalConfig *global,
     }
 
     if(retry) {
+      long sleeptime = 0;
+      curl_off_t retry_after = 0;
       static const char * const m[]={
         NULL,
         "timeout",
@@ -504,13 +506,24 @@ static CURLcode post_transfer(struct GlobalConfig *global,
         "FTP error"
       };
 
+      sleeptime = per->retry_sleep;
+      if(RETRY_HTTP == retry) {
+        curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after);
+        if(retry_after) {
+          /* store in a 'long', make sure it doesn't overflow */
+          if(retry_after > LONG_MAX/1000)
+            sleeptime = LONG_MAX;
+          else
+            sleeptime = (long)retry_after * 1000; /* milliseconds */
+        }
+      }
       warnf(config->global, "Transient problem: %s "
             "Will retry in %ld seconds. "
             "%ld retries left.\n",
             m[retry], per->retry_sleep/1000L, per->retry_numretries);
 
-      tool_go_sleep(per->retry_sleep);
       per->retry_numretries--;
+      tool_go_sleep(sleeptime);
       if(!config->retry_delay) {
         per->retry_sleep *= 2;
         if(per->retry_sleep > RETRY_SLEEP_MAX)