fix(backend_server.py): do not disconnect a client if Exception raised on msg handling

This commit is contained in:
2026-03-03 18:56:34 +01:00
parent ee381414a9
commit ead2224066

View File

@@ -290,7 +290,6 @@ class BackendServer:
self.logger.error(
f"Failed to parse message from {client}: {e}"
)
self._disconnect(client)
return
if mask & selectors.EVENT_WRITE and client.outbound: