File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1481,7 +1481,13 @@ def _on_mdns_operational_node_state(
1481
1481
self ._setup_node_create_task (node_id )
1482
1482
elif state_change == ServiceStateChange .Added :
1483
1483
# Trigger node re-subscriptions when mDNS entry got added
1484
- node_logger .info ("Activity on mDNS, trigger resubscribe" )
1484
+ # Note: Users seem to get such mDNS messages fairly regularly, and often
1485
+ # the subscription to the device is healthy and fine. This is not a problem
1486
+ # since trigger_resubscribe_if_scheduled won't do anything in that case
1487
+ # (no resubscribe is scheduled).
1488
+ # But this does speedup the resubscription process in case the subscription
1489
+ # is already in resubscribe mode.
1490
+ node_logger .debug ("Activity on mDNS, trigger resubscribe if scheduled" )
1485
1491
asyncio .create_task (
1486
1492
self ._chip_device_controller .trigger_resubscribe_if_scheduled (
1487
1493
node_id , "mDNS state change detected"
You can’t perform that action at this time.
0 commit comments