From 10cc9bb1a32981306427e6aeefc625b8b68754bd Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 8 Feb 2013 10:29:17 +0100 Subject: [PATCH] Bugfix: Don't use check interval offsets for services with a check_interval smaller than 1 second. --- lib/icinga/service.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/icinga/service.cpp b/lib/icinga/service.cpp index 822077d16..c1df7b4a2 100644 --- a/lib/icinga/service.cpp +++ b/lib/icinga/service.cpp @@ -284,8 +284,13 @@ void Service::UpdateNextCheck(void) else interval = GetCheckInterval(); - double now = Utility::GetTime(); - double adj = fmod(now + GetSchedulingOffset(), interval); + double adj = 0; + + if (interval > 1) + double now = Utility::GetTime(); + adj = fmod(now + GetSchedulingOffset(), interval); + } + SetNextCheck(now - adj + interval); }