Skip to content

Commit bc0c7ec

Browse files
authored
fix: wait time instead of tries (#10377)
1 parent 43baf57 commit bc0c7ec

File tree

1 file changed

+1
-1
lines changed
  • appengine/standard_python3/bundled-services/blobstore/django

1 file changed

+1
-1
lines changed

appengine/standard_python3/bundled-services/blobstore/django/main_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def gcloud_cli(command):
5757

5858

5959
# Wait for app to initialize
60-
@backoff.on_exception(backoff.expo, requests.exceptions.HTTPError, max_tries=5)
60+
@backoff.on_exception(backoff.expo, requests.exceptions.HTTPError, max_time=300)
6161
def wait_for_app(url):
6262
r = requests.get(url)
6363
r.raise_for_status()

0 commit comments

Comments
 (0)