Browse Source

Optional connection retries (Fixes #1306)

pull/1307/head
Miguel Grinberg 1 year ago
parent
commit
b4f36148d8
Failed to extract signature
  1. 11
      src/socketio/async_client.py
  2. 11
      src/socketio/client.py

11
src/socketio/async_client.py

@ -69,7 +69,7 @@ class AsyncClient(base_client.BaseClient):
async def connect(self, url, headers={}, auth=None, transports=None,
namespaces=None, socketio_path='socket.io', wait=True,
wait_timeout=1):
wait_timeout=1, retry=False):
"""Connect to a Socket.IO server.
:param url: The URL of the Socket.IO server. It can include custom
@ -105,6 +105,8 @@ class AsyncClient(base_client.BaseClient):
connection. The default is 1 second. This
argument is only considered when ``wait`` is set
to ``True``.
:param retry: Apply the reconnection logic if the initial connection
attempt fails. The default is ``False``.
Note: this method is a coroutine.
@ -147,6 +149,10 @@ class AsyncClient(base_client.BaseClient):
await self._trigger_event(
'connect_error', n,
exc.args[1] if len(exc.args) > 1 else exc.args[0])
if retry: # pragma: no cover
await self._handle_reconnect()
if self.eio.state == 'connected':
return
raise exceptions.ConnectionError(exc.args[0]) from None
if wait:
@ -477,7 +483,8 @@ class AsyncClient(base_client.BaseClient):
auth=self.connection_auth,
transports=self.connection_transports,
namespaces=self.connection_namespaces,
socketio_path=self.socketio_path)
socketio_path=self.socketio_path,
retry=False)
except (exceptions.ConnectionError, ValueError):
pass
else:

11
src/socketio/client.py

@ -69,7 +69,7 @@ class Client(base_client.BaseClient):
"""
def connect(self, url, headers={}, auth=None, transports=None,
namespaces=None, socketio_path='socket.io', wait=True,
wait_timeout=1):
wait_timeout=1, retry=False):
"""Connect to a Socket.IO server.
:param url: The URL of the Socket.IO server. It can include custom
@ -105,6 +105,8 @@ class Client(base_client.BaseClient):
connection. The default is 1 second. This
argument is only considered when ``wait`` is set
to ``True``.
:param retry: Apply the reconnection logic if the initial connection
attempt fails. The default is ``False``.
Example usage::
@ -145,6 +147,10 @@ class Client(base_client.BaseClient):
self._trigger_event(
'connect_error', n,
exc.args[1] if len(exc.args) > 1 else exc.args[0])
if retry: # pragma: no cover
self._handle_reconnect()
if self.eio.state == 'connected':
return
raise exceptions.ConnectionError(exc.args[0]) from None
if wait:
@ -441,7 +447,8 @@ class Client(base_client.BaseClient):
auth=self.connection_auth,
transports=self.connection_transports,
namespaces=self.connection_namespaces,
socketio_path=self.socketio_path)
socketio_path=self.socketio_path,
retry=False)
except (exceptions.ConnectionError, ValueError):
pass
else:

Loading…
Cancel
Save