소스 검색

AMBARI-8884. Host Check: adjust umask to handle up-to-027 (aonishuk)

Andrew Onishuk 10 년 전
부모
커밋
e94d9403b6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ambari-web/app/controllers/wizard/step3_controller.js

+ 1 - 1
ambari-web/app/controllers/wizard/step3_controller.js

@@ -1467,7 +1467,7 @@ App.WizardStep3Controller = Em.Controller.extend({
 
       //parse misc warnings for host
       var umask = _host.Hosts.last_agent_env.umask;
-      if (umask && umask !== 18) {
+      if (umask && umask > 23) {
         warning = warnings.filterProperty('category', 'misc').findProperty('name', umask);
         if (warning) {
           warning.hosts.push(_host.Hosts.host_name);