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 5d2a67e commit fe902b8Copy full SHA for fe902b8
plugwise_usb/connection/queue.py
@@ -137,9 +137,10 @@ async def _send_queue_worker(self) -> None:
137
self._submit_queue.task_done()
138
return
139
140
- while self._stick.queue_depth > 3:
141
- _LOGGER.info("Awaiting plugwise responses %d", self._stick.queue_depth)
+ if self._stick.queue_depth > 3:
142
await sleep(0.125)
143
+ _LOGGER.warning("Awaiting plugwise responses %d", self._stick.queue_depth)
144
145
await self._stick.write_to_stick(request)
146
0 commit comments