Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3947795

Browse files
arkqpull[bot]
authored andcommittedMay 23, 2024
Fix compilation with functions instrumentation (#33504)
1 parent 0ca6aff commit 3947795

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/app/CommandHandler.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,8 @@ CHIP_ERROR TestOnlyExtractCommandPathFromNextInvokeRequest(TLV::TLVReader & invo
944944
case CommandHandler::NlFaultInjectionType::SkipSecondResponse:
945945
return "Single InvokeResponseMessages. Dropping response to second request";
946946
}
947-
VerifyOrDieWithMsg(false, DataManagement, "TH Failure: Unexpected fault type");
947+
ChipLogError(DataManagement, "TH Failure: Unexpected fault type");
948+
chipAbort();
948949
}
949950

950951
} // anonymous namespace

0 commit comments

Comments
 (0)
Please sign in to comment.