Browse Source

fix AsyncClient::wait unexpected return after success reconnect (#1407)

* fix AsyncClient::wait unexpected return after success reconnect

AsyncClient::wait use sleep(1) call to wait to start reconnect task.
Sometimes reconnect is faster then 1 second, and wait returns while connection to server is established.

Added one check to avoid this situation

* Making added check easier to understand in source code

* fix Client::wait unexpected return after success reconnect

* fixes

---------

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

3
src/socketio/async_client.py

@ -189,6 +189,9 @@ class AsyncClient(base_client.BaseClient):
await self.eio.wait()
await self.sleep(1) # give the reconnect task time to start up
if not self._reconnect_task:
if self.eio.state == 'connected': # pragma: no cover
# connected while sleeping above
continue
break
await self._reconnect_task
if self.eio.state != 'connected':

5
src/socketio/client.py

@ -180,6 +180,11 @@ class Client(base_client.BaseClient):
self.eio.wait()
self.sleep(1) # give the reconnect task time to start up
if not self._reconnect_task:
if self.eio.state == 'connected': # pragma: no cover
# connected while sleeping above
continue
else:
# the reconnect task gave up
break
self._reconnect_task.join()
if self.eio.state != 'connected':

Loading…
Cancel
Save