From 07acb1c553d7bdadc6c66256a3cfa78e8a3cae4f Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 11 Feb 2013 16:25:32 +0100 Subject: [PATCH] Bugfix for slave notification objects. --- lib/icinga/service.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/icinga/service.cpp b/lib/icinga/service.cpp index ba3fa5ef5..f80849475 100644 --- a/lib/icinga/service.cpp +++ b/lib/icinga/service.cpp @@ -213,9 +213,10 @@ void Service::OnAttributeChanged(const String& name, const Value& oldValue) OnNextCheckChanged(GetSelf(), oldValue); else if (name == "servicegroups") ServiceGroup::InvalidateMembersCache(); - else if (name == "host_name" || name == "short_name") + else if (name == "host_name" || name == "short_name") { Host::InvalidateServicesCache(); - else if (name == "downtimes") + UpdateSlaveNotifications(); + } else if (name == "downtimes") Service::InvalidateDowntimeCache(); else if (name == "comments") Service::InvalidateCommentCache(); -- 2.40.0