@@ -970,30 +970,25 @@ def resubscription_succeeded(
970
970
self ._last_subscription_attempt [node_id ] = 0
971
971
future = loop .create_future ()
972
972
device = await self ._resolve_node (node_id )
973
- try :
974
- Attribute .Read (
975
- future = future ,
976
- eventLoop = loop ,
977
- device = device .deviceProxy ,
978
- devCtrl = self .chip_controller ,
979
- attributes = [Attribute .AttributePath ()], # wildcard
980
- events = [
981
- Attribute .EventPath (
982
- EndpointId = None , Cluster = None , Event = None , Urgent = 1
983
- )
984
- ],
985
- returnClusterObject = False ,
986
- subscriptionParameters = Attribute .SubscriptionParameters (
987
- interval_floor , interval_ceiling
988
- ),
989
- # Use fabricfiltered as False to detect changes made by other controllers
990
- # and to be able to provide a list of all fabrics attached to the device
991
- fabricFiltered = False ,
992
- autoResubscribe = True ,
993
- ).raise_on_error ()
994
- sub : Attribute .SubscriptionTransaction = await future
995
- except Exception as err : # pylint: disable=broad-except
996
- node_logger .exception ("Error setting up subscription" , exc_info = err )
973
+ Attribute .Read (
974
+ future = future ,
975
+ eventLoop = loop ,
976
+ device = device .deviceProxy ,
977
+ devCtrl = self .chip_controller ,
978
+ attributes = [Attribute .AttributePath ()], # wildcard
979
+ events = [
980
+ Attribute .EventPath (EndpointId = None , Cluster = None , Event = None , Urgent = 1 )
981
+ ],
982
+ returnClusterObject = False ,
983
+ subscriptionParameters = Attribute .SubscriptionParameters (
984
+ interval_floor , interval_ceiling
985
+ ),
986
+ # Use fabricfiltered as False to detect changes made by other controllers
987
+ # and to be able to provide a list of all fabrics attached to the device
988
+ fabricFiltered = False ,
989
+ autoResubscribe = True ,
990
+ ).raise_on_error ()
991
+ sub : Attribute .SubscriptionTransaction = await future
997
992
998
993
sub .SetAttributeUpdateCallback (attribute_updated_callback )
999
994
sub .SetEventUpdateCallback (event_callback )
@@ -1041,8 +1036,16 @@ async def _setup_node(self, node_id: int) -> None:
1041
1036
# prevent duplicate setup actions
1042
1037
return
1043
1038
self ._nodes_in_setup .add (node_id )
1044
- # pre-cache ip-addresses
1045
- await self .get_node_ip_addresses (node_id )
1039
+ # ping the node to out stale mdns reports and to prevent that we
1040
+ # send an unreachable node to the sdk which is very slow with resolving it
1041
+ # this will also precache the ip addresses of the node for later use.
1042
+ ping_result = await self .ping_node (node_id )
1043
+ if not any (ping_result .values ()):
1044
+ LOGGER .warning (
1045
+ "Skip set-up for node %s because it does not appear to be reachable..." ,
1046
+ node_id ,
1047
+ )
1048
+ return
1046
1049
# we use a lock for the node setup process to process nodes sequentially
1047
1050
# to prevent a flood of the (thread) network when there are many nodes being setup.
1048
1051
async with self ._node_setup_lock :
0 commit comments