Skip to content

Commit

Permalink
print url when waiting for server
Browse files Browse the repository at this point in the history
  • Loading branch information
renxida committed Jan 6, 2025
1 parent c0b1fd4 commit 1503af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app_tests/integration_tests/llm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def wait_for_server(url, timeout=10):
return
except requests.exceptions.ConnectionError:
time.sleep(1)
raise TimeoutError(f"Server did not start within {timeout} seconds")
raise TimeoutError(f"Server did not start within {timeout} seconds at {url}")


def _start_llm_server_args(
Expand Down

0 comments on commit 1503af8

Please sign in to comment.