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 90f7c47 commit 75f12ccCopy full SHA for 75f12cc
β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