Skip to content

Commit 43baf57

Browse files
authored
fix: wait time instead of tries (#10378)
1 parent 595e4a6 commit 43baf57

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def version():
6868
version_hostname = f"{version_id}-dot-{project_id}.appspot.com"
6969

7070
# Wait for app to initialize
71-
@backoff.on_exception(backoff.expo, requests.exceptions.HTTPError, max_tries=3)
71+
@backoff.on_exception(backoff.expo, requests.exceptions.HTTPError, max_time=300)
7272
def wait_for_app(url):
7373
r = requests.get(url)
7474
r.raise_for_status()

0 commit comments

Comments
 (0)