From 29256e50bb7c07f66101bc1c1518eb9a660e40d1 Mon Sep 17 00:00:00 2001 From: Arseny <36441601+arkuzo@users.noreply.github.com> Date: Tue, 19 Nov 2024 12:52:50 +0300 Subject: [PATCH] Making added check easier to understand in source code --- src/socketio/async_client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/socketio/async_client.py b/src/socketio/async_client.py index 4869dfa..69832d4 100644 --- a/src/socketio/async_client.py +++ b/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':