From 331921f612b58de6fee930ce4474e77ee857dc73 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 13 Aug 2025 19:16:33 -0400 Subject: [PATCH] Hmm disable CRE case for now, causes test fails So i need to either adjust the tests or figure out if/why this is needed to avoid the crashing in `pikerd` i found when killin the chart during a long backfill with `binance` backend.. --- tractor/ipc/_transport.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tractor/ipc/_transport.py b/tractor/ipc/_transport.py index 5a484b36..8c76c8ad 100644 --- a/tractor/ipc/_transport.py +++ b/tractor/ipc/_transport.py @@ -459,21 +459,21 @@ class MsgpackTransport(MsgTransport): ) raise tpt_closed from trans_err - case trio.ClosedResourceError() if ( - 'this socket was already closed' - in - trans_err.args[0] - ): - tpt_closed = TransportClosed.from_src_exc( - message=( - f'{tpt_name} already closed by peer\n' - ), - body=f'{self}\n', - src_exc=trans_err, - raise_on_report=True, - loglevel='transport', - ) - raise tpt_closed from trans_err + # case trio.ClosedResourceError() if ( + # 'this socket was already closed' + # in + # trans_err.args[0] + # ): + # tpt_closed = TransportClosed.from_src_exc( + # message=( + # f'{tpt_name} already closed by peer\n' + # ), + # body=f'{self}\n', + # src_exc=trans_err, + # raise_on_report=True, + # loglevel='transport', + # ) + # raise tpt_closed from trans_err # unless the disconnect condition falls under "a # normal operation breakage" we usualy console warn