From f594f1bddafcb7959e6665d405697ae926097fca Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 14 Mar 2022 06:47:43 -0400 Subject: [PATCH] Handle a connection reset on `msgspec` transport --- tractor/_ipc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tractor/_ipc.py b/tractor/_ipc.py index 82ba9ae..51f84f1 100644 --- a/tractor/_ipc.py +++ b/tractor/_ipc.py @@ -152,6 +152,7 @@ class MsgpackTCPStream(MsgTransport): except ( ValueError, + ConnectionResetError, # not sure entirely why we need this but without it we # seem to be getting racy failures here on