diff --git a/tractor/_ipc.py b/tractor/_ipc.py index ec8981f..d6afc33 100644 --- a/tractor/_ipc.py +++ b/tractor/_ipc.py @@ -69,7 +69,13 @@ class MsgpackTCPStream: # a quick connect then drop for root actors when # checking to see if there exists an "arbiter" # on the chosen sockaddr (``_root.py:108`` or thereabouts) - if '[Errno 104]' in msg: + if ( + # nix + '[Errno 104]' in msg or + + # windows + '[WinError 10054]' in msg + ): raise TransportClosed( f'{self} was broken with {msg}' )