Skip to content

Commit a9c6708

Browse files
authored
Use GetConnectedDevice directly to get device proxy (#723)
1 parent ed23edc commit a9c6708

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

matter_server/server/sdk.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,16 @@ async def read(
319319
# This is basically a re-implementation of the chip controller's Read function
320320
# but one that allows us to send/request custom attributes.
321321
future = self.server.loop.create_future()
322-
device = await self.find_or_establish_case_session(node_id)
323322
async with self._get_node_lock(node_id):
323+
# GetConnectedDevice is guaranteed to return a deviceProxy
324+
# otherwise it will raise a ChipStackError exception. A caller to
325+
# this function should handle the exception in any case, as the Read
326+
# below might raise such exceptions too.
327+
device = await self._chip_controller.GetConnectedDevice(
328+
nodeid=node_id,
329+
allowPASE=False,
330+
timeoutMs=None,
331+
)
324332
Attribute.Read(
325333
future=future,
326334
eventLoop=self.server.loop,

0 commit comments

Comments
 (0)