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

@@ -184,7 +184,7 @@ def _start_server_once() -> str:
thread.start()
# Poll until up
timeout_seconds = 30
timeout_seconds = 60
deadline = time.time() + timeout_seconds
while time.time() < deadline:
try:

View File

@@ -42,7 +42,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

@@ -87,7 +87,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

@@ -41,7 +41,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

@@ -107,7 +107,7 @@ def server_url() -> str:
thread = threading.Thread(target=_run_server, daemon=True)
thread.start()
timeout_seconds = 30
timeout_seconds = 60
import time
import httpx

View File

@@ -45,7 +45,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

@@ -35,7 +35,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

@@ -1017,7 +1017,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

@@ -514,7 +514,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

@@ -33,7 +33,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

@@ -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:

View File

@@ -56,7 +56,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

@@ -39,7 +39,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: