浏览代码

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

atkach 10 年之前
父节点
当前提交
9efa63da0e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ambari-web/app/utils/config.js

+ 1 - 1
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;
           }
         }