Procházet zdrojové kódy

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 před 12 roky
rodič
revize
a596f07ca9

+ 3 - 0
CHANGES.txt

@@ -17,6 +17,9 @@ Trunk (unreleased changes):
 
  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-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);
 
-        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;
         }