Skip to content

Commit e0ed99c

Browse files
committedJul 9, 2016
Revert "test/ctlmgr: keep trying to ping on OSError"
This reverts commit 375e821.
1 parent c4dc4e7 commit e0ed99c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

Diff for: ‎artiq/test/test_ctlmgr.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ async def wait_for_ping(self, host, port, retries=5, timeout=2):
5050
except asyncio.TimeoutError:
5151
timeout -= dt
5252
except (ConnectionAbortedError, ConnectionError,
53-
ConnectionRefusedError, ConnectionResetError,
54-
OSError):
53+
ConnectionRefusedError, ConnectionResetError):
5554
await asyncio.sleep(dt)
5655
timeout -= dt
5756
raise asyncio.TimeoutError

0 commit comments

Comments
 (0)
Please sign in to comment.