Author: jaimin
Date: Mon Apr 1 23:47:18 2013
New Revision: 1463337
URL: http://svn.apache.org/r1463337
Log:
AMBARI-1765. Enable the Ganglia rrd files location to be configurable when
Ganglia is selected as service. (jaimin)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1463337&r1=1463336&r2=1463337&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Mon Apr 1 23:47:18 2013
@@ -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
Modified:
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js?rev=1463337&r1=1463336&r2=1463337&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js
(original)
+++
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js
Mon Apr 1 23:47:18 2013
@@ -274,6 +274,7 @@ App.WizardStep7Controller = Em.Controlle
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));
},