From 10752394ab396bcfe26014139e2b942b8bfc9204 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Wed, 6 Dec 2023 11:36:19 -0500 Subject: [PATCH] Update Darwin storage documentation for new key. (#30845) https://github.com/project-chip/connectedhomeip/pull/30843 is adding a new global key; we need to document why it's not relevant to us. --- src/darwin/Framework/CHIP/MTRDemuxingStorage.mm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/darwin/Framework/CHIP/MTRDemuxingStorage.mm b/src/darwin/Framework/CHIP/MTRDemuxingStorage.mm index 5d4162ef321c55..1521a8c54f6726 100644 --- a/src/darwin/Framework/CHIP/MTRDemuxingStorage.mm +++ b/src/darwin/Framework/CHIP/MTRDemuxingStorage.mm @@ -159,6 +159,9 @@ static bool IsMemoryOnlyGlobalKey(NSString * key) // We do not expect to see the "g/ts/tts", "g/ts/dntp", "g/ts/tz", // "g/ts/dsto" Time Synchronization keys. + // We do not expect to see the "g/icd/cic" key; that's only used for an ICD + // that sends check-in messages. + return false; }