File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -319,8 +319,16 @@ async def read(
319
319
# This is basically a re-implementation of the chip controller's Read function
320
320
# but one that allows us to send/request custom attributes.
321
321
future = self .server .loop .create_future ()
322
- device = await self .find_or_establish_case_session (node_id )
323
322
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
+ )
324
332
Attribute .Read (
325
333
future = future ,
326
334
eventLoop = self .server .loop ,
You can’t perform that action at this time.
0 commit comments