Skip to content

Commit

Permalink
chore: bump timeout to health check request
Browse files Browse the repository at this point in the history
  • Loading branch information
badayvedat committed Aug 12, 2024
1 parent abc1c77 commit d462750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/fal/src/fal/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d462750

Please sign in to comment.