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..
main
Tyler Goodlet 2025-08-13 19:16:33 -04:00
parent df0d00abf4
commit 331921f612
1 changed files with 15 additions and 15 deletions

View File

@ -459,21 +459,21 @@ class MsgpackTransport(MsgTransport):
) )
raise tpt_closed from trans_err raise tpt_closed from trans_err
case trio.ClosedResourceError() if ( # case trio.ClosedResourceError() if (
'this socket was already closed' # 'this socket was already closed'
in # in
trans_err.args[0] # trans_err.args[0]
): # ):
tpt_closed = TransportClosed.from_src_exc( # tpt_closed = TransportClosed.from_src_exc(
message=( # message=(
f'{tpt_name} already closed by peer\n' # f'{tpt_name} already closed by peer\n'
), # ),
body=f'{self}\n', # body=f'{self}\n',
src_exc=trans_err, # src_exc=trans_err,
raise_on_report=True, # raise_on_report=True,
loglevel='transport', # loglevel='transport',
) # )
raise tpt_closed from trans_err # raise tpt_closed from trans_err
# unless the disconnect condition falls under "a # unless the disconnect condition falls under "a
# normal operation breakage" we usualy console warn # normal operation breakage" we usualy console warn