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 f5042df commit 5ad397bCopy full SHA for 5ad397b
roborock/local_api.py
@@ -167,6 +167,7 @@ async def send_message(self, data: bytes):
167
async with async_timeout.timeout(self.timeout):
168
await self.loop.sock_sendall(self.socket, data)
169
except (asyncio.TimeoutError, asyncio.CancelledError):
170
+ await self.disconnect()
171
raise RoborockTimeout(
172
f"Timeout after {self.timeout} seconds waiting for response"
173
) from None
0 commit comments