From 366b1d1435fb3dc47453f018a50a94653519734a Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 28 Jan 2013 09:48:20 +0100 Subject: [PATCH] Decreased minimum check interval to 5 seconds. --- lib/icinga/service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/icinga/service.cpp b/lib/icinga/service.cpp index 5104d2696..c3cd18cf5 100644 --- a/lib/icinga/service.cpp +++ b/lib/icinga/service.cpp @@ -54,7 +54,7 @@ REGISTER_TYPE(Service, serviceAttributes); const int Service::DefaultMaxCheckAttempts = 3; const int Service::DefaultCheckInterval = 5 * 60; -const int Service::MinCheckInterval = 15; +const int Service::MinCheckInterval = 5; const int Service::CheckIntervalDivisor = 5; boost::signal Service::OnCheckResultReceived;