Skip to content

Commit 3869176

Browse files
committed
Add 503 status code to retry in send_request_when_resource_available
1 parent 7b7f647 commit 3869176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def send_request_when_resource_available(
4343
timeout: int, func: Callable, *args, **kwargs
4444
) -> object:
4545
start_time = time.time()
46-
retry_statuses = {400, 500}
46+
retry_statuses = {400, 500, 503}
4747

4848
while True:
4949
try:

0 commit comments

Comments
 (0)