Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
3.2.0
-
None
-
None
Description
AuthenticationHandler can be either configured using fqcn or type. AppBlock checks for only the type simple and ignores the fqcn of PseudoAuthenticationHandler while checking whether ui is secured or not.
* @param authHandler The short-name (or fully qualified class name) of the * authentication handler.
AppBlock.java
// check if UI is unsecured. String httpAuth = conf.get(CommonConfigurationKeys.HADOOP_HTTP_AUTHENTICATION_TYPE); this.unsecuredUI = (httpAuth != null) && httpAuth.equals("simple");
Attachments
Attachments
Issue Links
- relates to
-
YARN-6890 If UI is not secured, we allow user to kill other users' job even yarn cluster is secured.
- Resolved