Browse Source

AMBARI-1204. Install Wizard: Re-enable configuration of user/group names for master component daemons. (yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1434525 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 years ago
parent
commit
a596f07ca9
2 changed files with 4 additions and 2 deletions
  1. 3 0
      CHANGES.txt
  2. 1 2
      ambari-web/app/controllers/wizard/step7_controller.js

+ 3 - 0
CHANGES.txt

@@ -17,6 +17,9 @@ Trunk (unreleased changes):
 
 
  IMPROVEMENTS
  IMPROVEMENTS
 
 
+ AMBARI-1204. Install Wizard: Re-enable configuration of user/group names for
+ master component daemons. (yusaku)
+
  AMBARI-1197. Refactor code for graphs. (yusaku)
  AMBARI-1197. Refactor code for graphs. (yusaku)
 
 
  AMBARI-1196. Automatically update host-level popup info/logs. (yusaku)
  AMBARI-1196. Automatically update host-level popup info/logs. (yusaku)

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

@@ -172,8 +172,7 @@ App.WizardStep7Controller = Em.Controller.extend({
 
 
         console.log('pushing ' + serviceConfig.serviceName, serviceConfig);
         console.log('pushing ' + serviceConfig.serviceName, serviceConfig);
 
 
-        if (this.get('selectedServiceNames').contains(serviceConfig.serviceName)) {
-          // AMBARI-1139 - Hiding MISC section // || serviceConfig.serviceName === 'MISC') {
+        if (this.get('selectedServiceNames').contains(serviceConfig.serviceName) || serviceConfig.serviceName === 'MISC') {
           serviceConfig.showConfig = true;
           serviceConfig.showConfig = true;
         }
         }