-
Notifications
You must be signed in to change notification settings - Fork 9k
HDFS-17774. Add authentication switch for WebHDFS. #7643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: trunk
Are you sure you want to change the base?
Conversation
💔 -1 overall
This message was automatically generated. |
if (conf.get(HADOOP_SECURITY_AUTHENTICATION, | ||
"simple").equalsIgnoreCase("kerberos") && | ||
conf.get(HADOOP_HTTP_AUTHENTICATION_TYPE, | ||
"simple").equalsIgnoreCase("simple") && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this is simple?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zeekling Thanks for your review. In HADOOP-16314, the HTTP AuthenticationFilter was unified, and we would also like to follow this configuration here.
Add authentication switch for WebHDFS.