Browse Source
Making added check easier to understand in source code
pull/1407/head
Arseny
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
1 deletions
-
src/socketio/async_client.py
|
|
@ -188,7 +188,9 @@ class AsyncClient(base_client.BaseClient): |
|
|
|
while True: |
|
|
|
await self.eio.wait() |
|
|
|
await self.sleep(1) # give the reconnect task time to start up |
|
|
|
if not self._reconnect_task and self.eio.state != 'connected': |
|
|
|
if self.eio.state == 'connected': # connected during await self.sleep(1) |
|
|
|
continue |
|
|
|
if not self._reconnect_task: |
|
|
|
break |
|
|
|
await self._reconnect_task |
|
|
|
if self.eio.state != 'connected': |
|
|
|