-
-
Notifications
You must be signed in to change notification settings - Fork 614
Closed
Labels
Description
Describe the bug
A failed connection in the engine is supposed to return One or more namespaces failed to connect: <namespace names>
However there's a +
missing at the end of this line:
python-socketio/src/socketio/async_client.py
Line 178 in 46069e7
'One or more namespaces failed to connect' |
So the strings don't get concatenated.
To Reproduce
Steps to reproduce the behavior:
in the connect event, raise ConnectionRefusedError("my dummy error")
Expected behavior
Due to the missing +
, an empty string is returned
Logs
The logs don't have an error - as expected.