Skip to content

Commit 00227dc

Browse files
Encode an empty list as now ActiveNetworkFault are tracked for the thread network (project-chip#32391)
1 parent bbf5f75 commit 00227dc

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/app/clusters/thread-network-diagnostics-server/thread-network-diagnostics-provider.cpp

+3-10
Original file line numberDiff line numberDiff line change
@@ -670,16 +670,9 @@ CHIP_ERROR WriteThreadNetworkDiagnosticAttributeToTlv(AttributeId attributeId, a
670670
break;
671671

672672
case Attributes::ActiveNetworkFaultsList::Id: {
673-
err = encoder.EncodeList([](const auto & aEncoder) -> CHIP_ERROR {
674-
// TODO activeNetworkFaultsList isn't tracked. Encode the list of 4 entries at 0 none the less
675-
NetworkFaultEnum activeNetworkFaultsList[4] = { NetworkFaultEnum(0) };
676-
for (auto fault : activeNetworkFaultsList)
677-
{
678-
ReturnErrorOnFailure(aEncoder.Encode(fault));
679-
}
680-
681-
return CHIP_NO_ERROR;
682-
});
673+
// activeNetworkFaults are not tracked by the thread stack nor the ThreadStackManager.
674+
// Encode an emptyList to indicate there are currently no active faults.
675+
err = encoder.EncodeEmptyList();
683676
}
684677
break;
685678

0 commit comments

Comments
 (0)