Skip to content

Commit 75f12cc

Browse files
authored
tests: bump max retries for 429/503 (#305)
Closes #55.
1 parent 90f7c47 commit 75f12cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

β€Žtests/system/test_system.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def _bad_copy(bad_request):
5858
retry_429 = RetryErrors(exceptions.TooManyRequests, max_tries=6)
5959
retry_429_harder = RetryErrors(exceptions.TooManyRequests, max_tries=10)
6060
retry_429_503 = RetryErrors(
61-
[exceptions.TooManyRequests, exceptions.ServiceUnavailable], max_tries=6
61+
[exceptions.TooManyRequests, exceptions.ServiceUnavailable], max_tries=10
6262
)
6363
retry_bad_copy = RetryErrors(exceptions.BadRequest, error_predicate=_bad_copy)
6464

0 commit comments

Comments
 (0)