You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by al...@apache.org on 2013/12/20 19:42:44 UTC

git commit: AMBARI-4144. Java heap size, and all other General properties cannot be overridden for all services (alexantonenko)

Updated Branches:
  refs/heads/branch-1.4.3 d5d39941f -> 5479d0239


AMBARI-4144. Java heap size, and all other General properties cannot be overridden for all services (alexantonenko)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5479d023
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5479d023
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5479d023

Branch: refs/heads/branch-1.4.3
Commit: 5479d023949d86173f83bf4dacc34b2455e034f5
Parents: d5d3994
Author: Alex Antonenko <hi...@gmail.com>
Authored: Fri Dec 20 20:35:47 2013 +0200
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Fri Dec 20 20:42:36 2013 +0200

----------------------------------------------------------------------
 ambari-web/app/controllers/main/service/info/configs.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/5479d023/ambari-web/app/controllers/main/service/info/configs.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/main/service/info/configs.js b/ambari-web/app/controllers/main/service/info/configs.js
index 9737501..a24e040 100644
--- a/ambari-web/app/controllers/main/service/info/configs.js
+++ b/ambari-web/app/controllers/main/service/info/configs.js
@@ -984,6 +984,7 @@ App.MainServiceInfoConfigsController = Em.Controller.extend({
       var site = sites.findProperty('type', type);
       if (site) {
         site.properties.push({
+          isRequiredByAgent: config.get('isRequiredByAgent'),
           name: config.get('name'),
           value: config.get('value')
         });
@@ -992,6 +993,7 @@ App.MainServiceInfoConfigsController = Em.Controller.extend({
           type: type,
           tag: 'version' + time,
           properties: [{
+            isRequiredByAgent: config.get('isRequiredByAgent'),
             name: config.get('name'),
             value: config.get('value')
           }]