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 746526a commit ec29b2eCopy full SHA for ec29b2e
plugwise_usb/connection/receiver.py
@@ -269,7 +269,7 @@ async def _put_message_in_queue(
269
if delay > 0.0:
270
await sleep(delay)
271
_LOGGER.debug("Add response to queue: %s", response)
272
- await self._message_queue.put(response)
+ self._message_queue.put_nowait(response)
273
if self._message_worker_task is None or self._message_worker_task.done():
274
_LOGGER.debug("Queue: start new worker-task")
275
self._message_worker_task = self._loop.create_task(
0 commit comments