chore: bump wait_for_server from 30 to 60 seconds (#8435)

bump 30 to 60 seconds
This commit is contained in:
Kian Jones
2026-01-08 11:44:05 -08:00
committed by Caren Thomas
parent b559bf8403
commit e60e8ed670
14 changed files with 14 additions and 14 deletions

View File

@@ -30,7 +30,7 @@ def server_url() -> str:
thread.start()
# Poll until the server is up (or timeout)
timeout_seconds = 30
timeout_seconds = 60
deadline = time.time() + timeout_seconds
while time.time() < deadline:
try:

View File

@@ -48,7 +48,7 @@ def server_url() -> str:
thread.start()
# Poll until the server is up (or timeout)
timeout_seconds = 30
timeout_seconds = 60
deadline = time.time() + timeout_seconds
while time.time() < deadline:
try: