Skip to content

Commit ce30fef

Browse files
authored
Use async resolve node (#655)
1 parent 965a078 commit ce30fef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

matter_server/server/device_controller.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1189,8 +1189,7 @@ async def _resolve_node(
11891189
)
11901190
time_start = time.time()
11911191
async with self._get_node_lock(node_id):
1192-
return await self._call_sdk(
1193-
self.chip_controller.GetConnectedDeviceSync,
1192+
return await self.chip_controller.GetConnectedDevice(
11941193
nodeid=node_id,
11951194
allowPASE=False,
11961195
timeoutMs=None,

0 commit comments

Comments
 (0)