File tree 1 file changed +6
-8
lines changed
1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,6 @@ def __init__(
102
102
self .thread_credentials_set : bool = False
103
103
self .compressed_fabric_id : int | None = None
104
104
self ._node_lock : dict [int , asyncio .Lock ] = {}
105
- self ._resolve_lock = asyncio .Lock ()
106
105
self ._aiobrowser : AsyncServiceBrowser | None = None
107
106
self ._aiozc : AsyncZeroconf | None = None
108
107
@@ -1035,13 +1034,12 @@ async def _resolve_node(
1035
1034
attempt ,
1036
1035
retries ,
1037
1036
)
1038
- async with self ._resolve_lock :
1039
- return await self ._call_sdk (
1040
- self .chip_controller .GetConnectedDeviceSync ,
1041
- nodeid = node_id ,
1042
- allowPASE = False ,
1043
- timeoutMs = None ,
1044
- )
1037
+ return await self ._call_sdk (
1038
+ self .chip_controller .GetConnectedDeviceSync ,
1039
+ nodeid = node_id ,
1040
+ allowPASE = False ,
1041
+ timeoutMs = None ,
1042
+ )
1045
1043
except (ChipStackError , TimeoutError ) as err :
1046
1044
if attempt >= retries :
1047
1045
# when we're out of retries, raise NodeNotResolving
You can’t perform that action at this time.
0 commit comments