diff --git a/projects/fal/src/fal/app.py b/projects/fal/src/fal/app.py index d4956814..aafeb1f2 100644 --- a/projects/fal/src/fal/app.py +++ b/projects/fal/src/fal/app.py @@ -143,7 +143,7 @@ def _print_logs(): with httpx.Client() as client: retries = 100 for _ in range(retries): - resp = client.get(info.url + "/health") + resp = client.get(info.url + "/health", timeout=60) if resp.is_success: break