From a8209c1a1a58c8dce2fb7bf74ab45553c6afc1ce Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 14 Jun 2016 07:57:52 +0200 Subject: [PATCH] Change which instance is responsible for initiating notifications in a HA setup refs #9242 --- lib/icinga/checkable-check.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/icinga/checkable-check.cpp b/lib/icinga/checkable-check.cpp index fc5e88e8d..4e64d9256 100644 --- a/lib/icinga/checkable-check.cpp +++ b/lib/icinga/checkable-check.cpp @@ -365,7 +365,7 @@ void Checkable::ProcessCheckResult(const CheckResult::Ptr& cr, const MessageOrig (is_volatile && !(IsStateOK(old_state) && IsStateOK(new_state)))) ExecuteEventHandler(); - if (send_downtime_notification && !origin) + if (send_downtime_notification && IsActive()) OnNotificationsRequested(this, in_downtime ? NotificationDowntimeStart : NotificationDowntimeEnd, cr, "", "", MessageOrigin::Ptr()); if (send_notification) { -- 2.40.0