From: Stian Soiland-Reyes Date: Fri, 4 Oct 2019 15:18:23 +0000 (+0100) Subject: curl: ensure HTTP 429 triggers --retry X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7f0b0012d42db74a293d4df19b39644015f1868;p=curl curl: ensure HTTP 429 triggers --retry This completes #3794. Also make sure the new tests from #4195 are enabled Closes #4465 --- diff --git a/src/tool_operate.c b/src/tool_operate.c index c2fed998c..b82a6672d 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -468,6 +468,7 @@ static CURLcode post_per_transfer(struct GlobalConfig *global, curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response); switch(response) { + case 429: /* Too Many Requests (RFC6585) */ case 500: /* Internal Server Error */ case 502: /* Bad Gateway */ case 503: /* Service Unavailable */ diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc index 5b0af4e30..f082cc46a 100644 --- a/tests/data/Makefile.inc +++ b/tests/data/Makefile.inc @@ -179,7 +179,7 @@ test1540 test1541 \ test1550 test1551 test1552 test1553 test1554 test1555 test1556 test1557 \ test1558 test1559 test1560 test1561 test1562 test1563 \ \ -test1590 test1591 test1592 test1593 test1594 \ +test1590 test1591 test1592 test1593 test1594 test1595 test1596 \ \ test1600 test1601 test1602 test1603 test1604 test1605 test1606 test1607 \ test1608 test1609 test1620 test1621 \ diff --git a/tests/data/test1596 b/tests/data/test1596 index 9a8cb480e..77a10f08a 100644 --- a/tests/data/test1596 +++ b/tests/data/test1596 @@ -12,7 +12,7 @@ If-Modified-Since # Server-side -HTTP/1.1 503 Error +HTTP/1.1 429 Too Many Requests Date: Thu, 11 Jul 2019 02:26:59 GMT Server: test-server/swsclose Retry-After: Thu, 11 Jul 2024 02:26:59 GMT