Skip to content

Commit dfa0246

Browse files
committed
Add extra info message
1 parent 44798c2 commit dfa0246

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

plugwise_usb/connection/receiver.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,8 @@ async def _notify_node_response_subscribers(self, node_response: PlugwiseRespons
375375
)
376376
return
377377
node_response.retries += 1
378+
if node_response.retries > 2:
379+
_LOGGER.info("No subscription for %s, retry later", node_response)
378380
self._delayed_processing_tasks[node_response.seq_id] = self._loop.call_later(
379381
0.1 * node_response.retries,
380382
self._put_message_in_receiver_queue,

0 commit comments

Comments
 (0)