8000 Extend test retry period (#8287) · mhenc/python-docs-samples@15ab3cb · GitHub
[go: up one dir, main page]

Skip to content

Commit 15ab3cb

Browse files
authored
Extend test retry period (GoogleCloudPlatform#8287)
1 parent 177b7ea commit 15ab3cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

run/idp-sql/e2e_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,17 @@
7878

7979

8080
retry_strategy = Retry(
81-
total=3,
81+
total=5,
8282
status_forcelist=[400, 401, 403, 500, 502, 503, 504],
8383
allowed_methods=["GET", "POST"],
84-
backoff_factor=3
84+
backoff_factor=5
8585
)
8686

8787
retry_strategy_500 = Retry(
88-
total=3,
88+
total=5,
8989
status_forcelist=[500, 502, 503, 504],
9090
allowed_methods=["GET", "POST"],
91-
backoff_factor=3
91+
backoff_factor=5
9292
)
9393

9494

0 commit comments

Comments
 (0)
0