From 7c905d831a8a878e57d05e14638f4c5cf6d3ef42 Mon Sep 17 00:00:00 2001 From: Mathieu Kardous Date: Tue, 17 Oct 2023 11:01:09 -0400 Subject: [PATCH] remove verifyordie for now --- src/app/icd/ICDManager.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/icd/ICDManager.cpp b/src/app/icd/ICDManager.cpp index b4a48a879dc2d9..2ffe307ad15337 100644 --- a/src/app/icd/ICDManager.cpp +++ b/src/app/icd/ICDManager.cpp @@ -62,7 +62,9 @@ void ICDManager::Init(PersistentStorageDelegate * storage, FabricTable * fabricT ICDManagementServer::GetInstance().SetSymmetricKeystore(mSymmetricKeystore); - VerifyOrDie(kFastPollingInterval.count() < activeModeInterval); + // Removing the check for now since it is possible for the Fast polling + // to be superior to the activeModeInterval fornow + // VerifyOrDie(kFastPollingInterval.count() < activeModeInterval); UpdateICDMode(); UpdateOperationState(OperationalState::ActiveMode);