You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by jo...@apache.org on 2014/09/18 16:44:03 UTC

[14/34] git commit: AMBARI-7370 yarn.admin.acl property showing up in compare but it's not set in versions. (atkach)

AMBARI-7370 yarn.admin.acl property showing up in compare but it's not set in versions. (atkach)


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

Branch: refs/heads/branch-alerts-dev
Commit: 9efa63da0eab71c7d1aefbe95fcd4e21ac742762
Parents: f3345be
Author: atkach <at...@hortonworks.com>
Authored: Wed Sep 17 20:06:24 2014 +0300
Committer: atkach <at...@hortonworks.com>
Committed: Wed Sep 17 20:06:24 2014 +0300

----------------------------------------------------------------------
 ambari-web/app/utils/config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/9efa63da/ambari-web/app/utils/config.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/config.js b/ambari-web/app/utils/config.js
index f49c5aa..8226811 100644
--- a/ambari-web/app/utils/config.js
+++ b/ambari-web/app/utils/config.js
@@ -364,7 +364,7 @@ App.config = Em.Object.create({
           // in case when config is absent on server and defined UI config is required
           // by server, this config should be ignored
           var serverProperty = properties[serviceConfigObj.get('name')];
-          if (!serverProperty && serviceConfigObj.get('isRequiredByAgent')) {
+          if (Em.isNone(serverProperty) && serviceConfigObj.get('isRequiredByAgent')) {
             continue;
           }
         }