diff --git a/chia/server/ws_connection.py b/chia/server/ws_connection.py index c6c1f18b8ec8..235a939db64a 100644 --- a/chia/server/ws_connection.py +++ b/chia/server/ws_connection.py @@ -262,9 +262,7 @@ class WSChiaConnection: await self._send_message(msg) except asyncio.CancelledError: pass - except BrokenPipeError as e: - self.log.warning(f"{e} {self.peer_host}") - except ConnectionResetError as e: + except (BrokenPipeError, ConnectionResetError, TimeoutError) as e: self.log.warning(f"{e} {self.peer_host}") except Exception as e: error_stack = traceback.format_exc()