mirror of https://github.com/Icinga/icinga2.git
parent
51c89fbb5f
commit
8f7b819c9d
|
@ -194,6 +194,8 @@ void CheckerComponent::CheckThreadProc(void)
|
|||
Log(LogDebug, "CheckerComponent")
|
||||
<< "Executing check for '" << checkable->GetName() << "'";
|
||||
|
||||
Checkable::IncreasePendingChecks();
|
||||
|
||||
Utility::QueueAsyncCallback(boost::bind(&CheckerComponent::ExecuteCheckHelper, CheckerComponent::Ptr(this), checkable));
|
||||
|
||||
lock.lock();
|
||||
|
@ -222,6 +224,8 @@ void CheckerComponent::ExecuteCheckHelper(const Checkable::Ptr& checkable)
|
|||
Log(LogCritical, "checker", output);
|
||||
}
|
||||
|
||||
Checkable::DecreasePendingChecks();
|
||||
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
|
|
Loading…
Reference in New Issue