ScheduleHostCheckCommandForm: Ignore hosts which have no active checks
refs #3665
This commit is contained in:
parent
c2fc370273
commit
7bda65978c
|
@ -45,6 +45,10 @@ class ScheduleHostCheckCommandForm extends ScheduleServiceCheckCommandForm
|
|||
{
|
||||
foreach ($this->objects as $object) {
|
||||
/** @var \Icinga\Module\Monitoring\Object\Host $object */
|
||||
if (! $object->active_checks_enabled) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$check = new ScheduleHostCheckCommand();
|
||||
$check
|
||||
->setObject($object)
|
||||
|
|
Loading…
Reference in New Issue