From 6648af73aeaea0c68139e88f0dc7e3e8fd23f0e6 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sun, 17 Jun 2012 23:10:03 +0200 Subject: [PATCH] Decrease timeout for the result timer. --- components/checker/checkercomponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }