Browse Source

AMBARI-12908. Add Service wizard: Config changes for installed services does not happen. (jaimin)

Jaimin Jetly 10 years ago
parent
commit
a19c925810
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ambari-web/app/controllers/wizard.js

+ 1 - 1
ambari-web/app/controllers/wizard.js

@@ -911,7 +911,7 @@ App.WizardController = Em.Controller.extend(App.LocalStorage, App.ThemesMappingM
         serviceConfigProperties.push(configProperty);
       }, this);
       // check for configs that need to update for installed services
-      if (installedServiceNames[_content.get('serviceName')]) {
+      if (installedServiceNamesMap[_content.get('serviceName')]) {
         // get only modified configs
         var configs = _content.get('configs').filter(function (config) {
           if (config.get('isNotDefaultValue') || (config.get('savedValue') === null)) {