Skip to content

Commit 2e3fa38

Browse files
tseavercojenco
authored andcommitted
tests: bump max retries for 429/503 (googleapis#305)
Closes googleapis#55.
1 parent 1ad0f03 commit 2e3fa38

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)