Repository: ambari Updated Branches: refs/heads/trunk 59dd207c3 -> a19c92581
AMBARI-12908. Add Service wizard: Config changes for installed services does not happen. (jaimin) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/a19c9258 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a19c9258 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a19c9258 Branch: refs/heads/trunk Commit: a19c9258104f6fa767dfc7af2c17872d17d2cb85 Parents: 59dd207 Author: Jaimin Jetly <[email protected]> Authored: Thu Aug 27 16:23:05 2015 -0700 Committer: Jaimin Jetly <[email protected]> Committed: Thu Aug 27 16:26:08 2015 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/a19c9258/ambari-web/app/controllers/wizard.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard.js b/ambari-web/app/controllers/wizard.js index 98e8078..5c4ef30 100644 --- a/ambari-web/app/controllers/wizard.js +++ b/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)) {
