Skip to content

Commit

Permalink
fix: increase default wait time for uvicorn server process start (#5818)
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerHYang authored Dec 23, 2024
1 parent 2c2e16d commit a4cef8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@

def _write_pid_file_when_ready(
server: Server,
wait_up_to_seconds: float = 5,
wait_up_to_seconds: float = 60,
) -> None:
"""Write PID file after server is started (or when time is up)."""
time_limit = time() + wait_up_to_seconds
Expand Down

0 comments on commit a4cef8e

Please sign in to comment.