From cb01f96dad5214e2d86d18a0ef3e193411a50cf6 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 13 Jun 2016 10:48:59 +0200 Subject: [PATCH] Don't forward SendNotifications messages to non-local zones refs #9242 --- lib/icinga/clusterevents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/icinga/clusterevents.cpp b/lib/icinga/clusterevents.cpp index c97f7bbc0..02b2e79aa 100644 --- a/lib/icinga/clusterevents.cpp +++ b/lib/icinga/clusterevents.cpp @@ -775,7 +775,7 @@ void ClusterEvents::SendNotificationsHandler(const Checkable::Ptr& checkable, No params->Set("author", author); params->Set("text", text); - listener->RelayMessage(origin, checkable, message, true); + listener->RelayMessage(origin, ConfigObject::Ptr(), message, true); } Value ClusterEvents::SendNotificationsAPIHandler(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& params)