Skip to content

Commit e0b8a84

Browse files
authored
Checking mFinishedCommandCount doesn't require mpPendingResponseTracker (#32375)
1 parent 04d7a3e commit e0b8a84

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/app/CommandSender.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -497,10 +497,7 @@ CHIP_ERROR CommandSender::PrepareCommand(const CommandPathParams & aCommandPathP
497497
bool canAddAnotherCommand = (mState == State::AddedCommand && mBatchCommandsEnabled && mUseExtendableCallback);
498498
VerifyOrReturnError(mState == State::Idle || canAddAnotherCommand, CHIP_ERROR_INCORRECT_STATE);
499499

500-
if (mpPendingResponseTracker != nullptr)
501-
{
502-
VerifyOrReturnError(mFinishedCommandCount < mRemoteMaxPathsPerInvoke, CHIP_ERROR_MAXIMUM_PATHS_PER_INVOKE_EXCEEDED);
503-
}
500+
VerifyOrReturnError(mFinishedCommandCount < mRemoteMaxPathsPerInvoke, CHIP_ERROR_MAXIMUM_PATHS_PER_INVOKE_EXCEEDED);
504501

505502
if (mBatchCommandsEnabled)
506503
{

0 commit comments

Comments
 (0)