From dbb0c00b32b7e8cf20db34761681b0502d899f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Valur=20J=C3=B3nsson?= Date: Fri, 15 Jul 2022 12:11:40 +0000 Subject: [PATCH] Report which namespaces remain unconnected --- src/socketio/asyncio_client.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/socketio/asyncio_client.py b/src/socketio/asyncio_client.py index 3c700ee..1c4c1fd 100644 --- a/src/socketio/asyncio_client.py +++ b/src/socketio/asyncio_client.py @@ -158,10 +158,13 @@ class AsyncClient(client.Client): break except asyncio.TimeoutError: pass - if set(self.namespaces) != set(self.connection_namespaces): + unconnected = set(self.connection_namespaces) - set(self.namespaces) + if unconnected: await self.disconnect() raise exceptions.ConnectionError( - 'One or more namespaces failed to connect') + 'One or more namespaces failed to connect: %r' + % (list(unconnected),) + ) self.connected = True