You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2013/06/05 19:30:51 UTC

svn commit: r1489975 - /incubator/ambari/trunk/ambari-web/app/controllers/main/service/info/configs.js

Author: yusaku
Date: Wed Jun  5 17:30:51 2013
New Revision: 1489975

URL: http://svn.apache.org/r1489975
Log:
AMBARI-2292. MapReduce 2 parameters are being added when reconfiguring MapReduce. (Oleg Nechiporenko via yusaku)

Modified:
    incubator/ambari/trunk/ambari-web/app/controllers/main/service/info/configs.js

Modified: incubator/ambari/trunk/ambari-web/app/controllers/main/service/info/configs.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/main/service/info/configs.js?rev=1489975&r1=1489974&r2=1489975&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/controllers/main/service/info/configs.js (original)
+++ incubator/ambari/trunk/ambari-web/app/controllers/main/service/info/configs.js Wed Jun  5 17:30:51 2013
@@ -29,8 +29,12 @@ App.MainServiceInfoConfigsController = E
   uiConfigs: [],
   customConfig: [],
   isApplyingChanges: false,
-  serviceConfigs: App.config.get('preDefinedServiceConfigs'),
-  configMapping: App.config.get('configMapping'),
+  serviceConfigs: function(){
+    return App.config.get('preDefinedServiceConfigs');
+  }.property('App.config.preDefinedServiceConfigs'),
+  configMapping: function(){
+    return App.config.get('configMapping');
+  }.property('App.config.configMapping'),
   customConfigs: require('data/custom_configs'),
   configs: function() {
     return  App.config.get('preDefinedConfigProperties');