We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4829aa2 commit 38f397cCopy full SHA for 38f397c
thingsdb/client/client.py
@@ -671,7 +671,7 @@ async def _reconnect_loop(self):
671
await self._connect(timeout=timeout)
672
await self._ping(timeout=2)
673
await self._authenticate(timeout=5)
674
- await self._rejoin()
+ await asyncio.wait_for(self._rejoin(), timeout=5)
675
except Exception as e:
676
name = host if self._is_websocket_host(host) else \
677
f'{host}:{port}'
thingsdb/version.py
@@ -1 +1 @@
1
-__version__ = '1.2.1'
+__version__ = '1.2.2'
0 commit comments