From 39559066540b80b1dd824f4a795d791f92d2e4ac 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 4d62f1d..e7e8f5e 100644 --- a/tractor/_ipc.py +++ b/tractor/_ipc.py @@ -239,6 +239,7 @@ class MsgspecTCPStream(MsgpackTCPStream): except ( ValueError, + ConnectionResetError, # not sure entirely why we need this but without it we # seem to be getting racy failures here on