소스 검색

AMBARI-1765. Enable the Ganglia rrd files location to be configurable when Ganglia is selected as service. (jaimin)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1463337 13f79535-47bb-0310-9956-ffa450edef68
Jaimin Jetly 12 년 전
부모
커밋
7024653659
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      CHANGES.txt
  2. 1 0
      ambari-web/app/controllers/wizard/step7_controller.js

+ 3 - 0
CHANGES.txt

@@ -544,6 +544,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-1765. Enable the Ganglia rrd files location to be configurable
+ when Ganglia is selected as service. (jaimin)
+
  AMBARI-1762. SUSE_Unable to start hive. (swagle)
 
  AMBARI-1761. Update the DDL update script to modify the table to

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

@@ -274,6 +274,7 @@ App.WizardStep7Controller = Em.Controller.extend({
     miscConfigs.findProperty('name', 'pig_user').set('isVisible', this.get('selectedServiceNames').contains('PIG'));
     miscConfigs.findProperty('name', 'sqoop_user').set('isVisible', this.get('selectedServiceNames').contains('SQOOP'));
     miscConfigs.findProperty('name', 'zk_user').set('isVisible', this.get('selectedServiceNames').contains('ZOOKEEPER'));
+    miscConfigs.findProperty('name', 'rrdcached_base_dir').set('isVisible', this.get('selectedServiceNames').contains('GANGLIA'));
 
     this.set('selectedService', this.get('stepConfigs').filterProperty('showConfig', true).objectAt(0));
   },