Skip to content

Commit

Permalink
fix: improved error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Oct 17, 2024
1 parent b693873 commit f0057b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aw_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def wait_for_start(self, timeout: int = 10) -> None:
sleep(sleep_time)
sleep_time *= 2
else:
raise Exception("Server did not start in time")
raise Exception(f"Server at {self.server_address} did not start in time")


QueuedRequest = namedtuple("QueuedRequest", ["endpoint", "data"])
Expand Down

0 comments on commit f0057b4

Please sign in to comment.