Skip to content

Commit 1cf8ef8

Browse files
committed
Address PR comments
1 parent 5557b01 commit 1cf8ef8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/fabric-admin/rpc/RpcServer.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class FabricAdmin final : public rpc::FabricAdmin, public IcdManager::Delegate
4747
public:
4848
void OnCheckInCompleted(const chip::app::ICDClientInfo & clientInfo) override
4949
{
50-
chip::NodeId nodeId = clientInfo.peer_node.GetNodeId();
50+
NodeId nodeId = clientInfo.peer_node.GetNodeId();
5151
auto it = mPendingCheckIn.find(nodeId);
5252
VerifyOrReturn(it != mPendingCheckIn.end());
5353

@@ -190,7 +190,7 @@ class FabricAdmin final : public rpc::FabricAdmin, public IcdManager::Delegate
190190
// Modifications to mPendingCheckIn should be done on the MatterEventLoop thread
191191
// otherwise we would need a mutex protecting this data to prevent race as this
192192
// data is accessible by both RPC thread and Matter eventloop.
193-
std::unordered_map<chip::NodeId, KeepActiveDataForCheckIn> mPendingCheckIn;
193+
std::unordered_map<NodeId, KeepActiveDataForCheckIn> mPendingCheckIn;
194194
};
195195

196196
FabricAdmin fabric_admin_service;

0 commit comments

Comments
 (0)