mirror of https://github.com/Icinga/icinga2.git
Bugfixes.
This commit is contained in:
parent
db05779fde
commit
d3b4cc7b0d
|
@ -198,12 +198,13 @@ bool Service::IsReachable(void) const
|
||||||
|
|
||||||
if (!it->IsReachable())
|
if (!it->IsReachable())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (it->GetStateType() == StateTypeHard && it->GetState() != StateOK &&
|
||||||
|
it->GetState() != StateWarning)
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GetStateType() == StateTypeHard && GetState() != StateOK && GetState() != StateWarning)
|
return true;
|
||||||
return false;
|
|
||||||
else
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Service::SetNextCheck(time_t nextCheck)
|
void Service::SetNextCheck(time_t nextCheck)
|
||||||
|
|
Loading…
Reference in New Issue