Skip to content

Commit

Permalink
Merge pull request #8 from pgehring/fix/wait_for_host
Browse files Browse the repository at this point in the history
[robmuxinator] fix crash after `wait_for_host` timeout
  • Loading branch information
fmessmer committed May 2, 2024
2 parents 1c1c5ef + edbb67a commit c321dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robmuxinator/robmuxinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ def wait_for_host(self, timeout=60):
time.sleep(0.25)
if datetime.now() > end:
logger.error(
" could not connect to '{}:{}' within {} secs: {}".format(
self._hostname, self._port, timeout, ex
" could not connect to '{}:{}' within {} secs".format(
self._hostname, self._port, timeout
)
)
return False
Expand Down

0 comments on commit c321dfb

Please sign in to comment.