We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad0f03 commit 2e3fa38Copy full SHA for 2e3fa38
tests/system/test_system.py
@@ -58,7 +58,7 @@ def _bad_copy(bad_request):
58
retry_429 = RetryErrors(exceptions.TooManyRequests, max_tries=6)
59
retry_429_harder = RetryErrors(exceptions.TooManyRequests, max_tries=10)
60
retry_429_503 = RetryErrors(
61
- [exceptions.TooManyRequests, exceptions.ServiceUnavailable], max_tries=6
+ [exceptions.TooManyRequests, exceptions.ServiceUnavailable], max_tries=10
62
)
63
retry_bad_copy = RetryErrors(exceptions.BadRequest, error_predicate=_bad_copy)
64
0 commit comments