File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ def remove_listener() -> None:
335335 message_ids ,
336336 seq_id ,
337337 )
338- _LOGGER .warning ("node subscription created for %s - %s" , mac , seq_id )
338+ _LOGGER .debug ("node subscription created for %s - %s" , mac , seq_id )
339339 return remove_listener
340340
341341 async def _notify_node_response_subscribers (
@@ -349,10 +349,6 @@ async def _notify_node_response_subscribers(
349349 _LOGGER .debug ("Drop previously processed duplicate %s" , node_response )
350350 return
351351
352- _LOGGER .warning (
353- "total node subscriptions: %s" , len (self ._node_response_subscribers )
354- )
355-
356352 notify_tasks : list [Coroutine [Any , Any , bool ]] = []
357353 for node_subscription in self ._node_response_subscribers .values ():
358354 if (
Original file line number Diff line number Diff line change @@ -111,9 +111,7 @@ async def start(self) -> None:
111111 """Initialize load the network registry."""
112112 if self ._cache_enabled :
113113 await self .restore_network_cache ()
114- await sleep (0 )
115114 await self .load_registry_from_cache ()
116- await sleep (0 )
117115 await self .update_missing_registrations (quick = True )
118116
119117 async def restore_network_cache (self ) -> None :
You can’t perform that action at this time.
0 commit comments