Fix message routing for command_endpoint checks in satellite zones with >2 instances

refs #12179
This commit is contained in:
Gunnar Beutner 2016-07-19 18:32:01 +02:00
parent 3d06df96bc
commit 9075de67b1
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ Value ClusterEvents::CheckResultAPIHandler(const MessageOrigin::Ptr& origin, con
return Empty;
}
if (Zone::GetLocalZone() == checkable->GetZone() && endpoint == checkable->GetCommandEndpoint())
if (!checkable->IsPaused() && Zone::GetLocalZone() == checkable->GetZone() && endpoint == checkable->GetCommandEndpoint())
checkable->ProcessCheckResult(cr);
else
checkable->ProcessCheckResult(cr, origin);