Tolerate one decode error; may have been a registry ping

optional_msgspec_support
Tyler Goodlet 2021-09-30 11:32:28 -04:00
parent ef75883b62
commit 135459ca25
1 changed files with 8 additions and 6 deletions

View File

@ -177,17 +177,19 @@ class MsgspecTCPStream(MsgpackTCPStream):
log.transport(f"received {msg_bytes}") # type: ignore
try:
assert not last_decode_failed
yield self.decode(msg_bytes)
except (
msgspec.DecodingError,
UnicodeDecodeError,
):
if not last_decode_failed:
# ignore decoding errors for now and assume they have to
# do with a channel drop - hope that receiving from the
# channel will raise an expected error and bubble up.
log.error('`msgspec` failed to decode!?')
last_decode_failed = True
else:
raise
async def send(self, data: Any) -> None:
async with self._send_lock: