Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yunhanw-google committed Jul 11, 2022
1 parent 8fe7566 commit f45b085
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/CommandHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,11 @@ class CommandHandler : public Messaging::ExchangeDelegate
// ExchangeDelegate
CHIP_ERROR OnMessageReceived(Messaging::ExchangeContext * apExchangeContext, const PayloadHeader & aPayloadHeader,
System::PacketBufferHandle && aPayload) override;
void OnResponseTimeout(Messaging::ExchangeContext * apExchangeContext) override {}
void OnResponseTimeout(Messaging::ExchangeContext * apExchangeContext) override
{
VerifyOrDieWithMsg(false, InteractionModel,
"not expect a response, either caused by faulty logic, or at the EC that needs to be fixed.");
}

enum class State
{
Expand Down

0 comments on commit f45b085

Please sign in to comment.