From: Gunnar Beutner Date: Sun, 17 Jun 2012 21:10:03 +0000 (+0200) Subject: Decrease timeout for the result timer. X-Git-Tag: v0.0.1~408 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6648af73aeaea0c68139e88f0dc7e3e8fd23f0e6;p=icinga2 Decrease timeout for the result timer. --- diff --git a/components/checker/checkercomponent.cpp b/components/checker/checkercomponent.cpp index ce36421da..cbd09176c 100644 --- a/components/checker/checkercomponent.cpp +++ b/components/checker/checkercomponent.cpp @@ -46,7 +46,7 @@ void CheckerComponent::Start(void) CheckTask::RegisterType("nagios", NagiosCheckTask::CreateTask); m_ResultTimer = boost::make_shared(); - m_ResultTimer->SetInterval(10); + m_ResultTimer->SetInterval(5); m_ResultTimer->OnTimerExpired.connect(boost::bind(&CheckerComponent::ResultTimerHandler, this)); m_ResultTimer->Start(); }