Browse Source

Add namespaces parameter to the self.connect call in the reconnection process

pull/269/head
quentin 6 years ago
parent
commit
0ccfef2dc5
  1. 3
      socketio/client.py

3
socketio/client.py

@ -477,7 +477,8 @@ class Client(object):
self.connect(self.connection_url, self.connect(self.connection_url,
headers=self.connection_headers, headers=self.connection_headers,
transports=self.connection_transports, transports=self.connection_transports,
socketio_path=self.socketio_path) socketio_path=self.socketio_path,
namespaces=self.namespaces)
except (exceptions.ConnectionError, ValueError): except (exceptions.ConnectionError, ValueError):
pass pass
else: else:

Loading…
Cancel
Save