checker: Make sure non-authoritative cluster instances don't reschedule checks.

This commit is contained in:
Gunnar Beutner 2013-09-12 15:20:01 +02:00
parent b510545d4d
commit 91aad7c997
2 changed files with 8 additions and 2 deletions

View File

@ -105,8 +105,9 @@ void CheckerComponent::CheckThreadProc(void)
bool forced = service->GetForceNextCheck();
bool check = true;
bool authoritative = service->HasAuthority("checker");
if (!service->HasAuthority("checker")) {
if (!authoritative) {
Log(LogDebug, "checker", "Skipping check for service '" + service->GetName() + "': not authoritative");
check = false;
}
@ -127,7 +128,8 @@ void CheckerComponent::CheckThreadProc(void)
/* reschedule the service if checks are disabled */
if (!check) {
service->UpdateNextCheck();
if (authoritative)
service->UpdateNextCheck();
typedef boost::multi_index::nth_index<ServiceSet, 1>::type CheckTimeView;
CheckTimeView& idx = boost::get<1>(m_IdleServices);

View File

@ -23,6 +23,7 @@
#include "icinga/service.h"
#include "base/dynamicobject.h"
#include "base/timer.h"
#include "base/utility.h"
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition_variable.hpp>
@ -45,6 +46,9 @@ struct ServiceNextCheckExtractor
*/
double operator()(const Service::Ptr& service)
{
if (!service->HasAuthority("checker"))
return Utility::GetTime() + 60;
double next = service->GetNextCheck();
while (next == 0) {