Browse Source

Prevent multiple tasks for reconnection (#1369)

* Prevent multiple taks for reconnection

As discussed here.

https://github.com/miguelgrinberg/python-socketio/discussions/1367

In certain scenarios, this library creates multiple reconnection tasks.

A check is added to make sure that reconnection task starts only when

this task is not running.

Signed-off-by: Humayun Ajmal <[email protected]>

* async client

---------

Signed-off-by: Humayun Ajmal <[email protected]>
Co-authored-by: Miguel Grinberg <[email protected]>
pull/1426/head
humayunsr 4 months ago
committed by GitHub
parent
commit
b6ee33e56c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/socketio/async_client.py
  2. 2
      src/socketio/client.py

2
src/socketio/async_client.py

@ -581,7 +581,7 @@ class AsyncClient(base_client.BaseClient):
self.callbacks = {}
self._binary_packet = None
self.sid = None
if will_reconnect:
if will_reconnect and not self._reconnect_task:
self._reconnect_task = self.start_background_task(
self._handle_reconnect)

2
src/socketio/client.py

@ -539,7 +539,7 @@ class Client(base_client.BaseClient):
self.callbacks = {}
self._binary_packet = None
self.sid = None
if will_reconnect:
if will_reconnect and not self._reconnect_task:
self._reconnect_task = self.start_background_task(
self._handle_reconnect)

Loading…
Cancel
Save