From b75b53251e2dec6a31bd45b679baf278100ce02c Mon Sep 17 00:00:00 2001 From: Sivaguru Kannan Date: Thu, 26 May 2016 15:05:05 -0700 Subject: [PATCH] AMBARI-16915 Do not set the notifier plugin class property when not specified in storm defaults --- .../main/resources/stacks/HDP/2.3/services/stack_advisor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ambari-server/src/main/resources/stacks/HDP/2.3/services/stack_advisor.py b/ambari-server/src/main/resources/stacks/HDP/2.3/services/stack_advisor.py index 79314f588c1..b924d63f0c3 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.3/services/stack_advisor.py +++ b/ambari-server/src/main/resources/stacks/HDP/2.3/services/stack_advisor.py @@ -657,7 +657,9 @@ def recommendStormConfigurations(self, configurations, clusterData, services, ho notifier_plugin_value = ",".join(application_classes) else: notifier_plugin_value = " " - putStormStartupProperty(notifier_plugin_property, notifier_plugin_value) + + if notifier_plugin_value != " ": + putStormStartupProperty(notifier_plugin_property, notifier_plugin_value) def recommendFalconConfigurations(self, configurations, clusterData, services, hosts):