소스 검색

[oozie] Warning about using HBase credentials

Romain Rigaux 10 년 전
부모
커밋
3e29581935
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      apps/oozie/src/oozie/templates/editor2/common_workflow.mako

+ 4 - 0
apps/oozie/src/oozie/templates/editor2/common_workflow.mako

@@ -499,6 +499,10 @@
 <script type="text/html" id="common-action-credentials">
   <em data-bind="visible: $root.credentials() == null || $root.credentials().length == 0">${ _('No available credentials.') }</em>
   <select data-bind="visible: $root.credentials() != null && $root.credentials().length > 0, options: $root.credentials, selectedOptions: properties.credentials" size="5" multiple="true"></select>
+
+  <em data-bind="visible: properties.credentials.indexOf('hbase') != -1">
+    ${ _('Requires hbase-site.xml in job path') }
+  </em>
 </script>