Repository: hadoop Updated Branches: refs/heads/branch-2.9 322520eb7 -> 43340e8eb
Updated timeline reader to use AuthenticationFilter Change-Id: I961771589180c1eb377d36c37a79aa23754effbf (cherry picked from commit 837338788eb903d0e8bbb1230694782a707891be) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/43340e8e Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/43340e8e Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/43340e8e Branch: refs/heads/branch-2.9 Commit: 43340e8ebb27c8c971868a53dd47958c9a0948d1 Parents: 322520e Author: Wangda Tan <[email protected]> Authored: Thu Mar 8 09:23:45 2018 -0800 Committer: Konstantin V Shvachko <[email protected]> Committed: Mon Mar 19 12:15:35 2018 -0700 ---------------------------------------------------------------------- .../TimelineReaderAuthenticationFilterInitializer.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/43340e8e/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/security/TimelineReaderAuthenticationFilterInitializer.java ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/security/TimelineReaderAuthenticationFilterInitializer.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/security/TimelineReaderAuthenticationFilterInitializer.java index e1c93be..d81e5e8 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/security/TimelineReaderAuthenticationFilterInitializer.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/security/TimelineReaderAuthenticationFilterInitializer.java @@ -20,11 +20,11 @@ package org.apache.hadoop.yarn.server.timelineservice.reader.security; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.http.FilterContainer; -import org.apache.hadoop.security.AuthenticationWithProxyUserFilter; +import org.apache.hadoop.security.authentication.server.AuthenticationFilter; import org.apache.hadoop.yarn.server.timeline.security.TimelineAuthenticationFilterInitializer; /** - * Filter initializer to initialize {@link AuthenticationWithProxyUserFilter} + * Filter initializer to initialize {@link AuthenticationFilter} * for ATSv2 timeline reader server with timeline service specific * configurations. */ @@ -32,9 +32,9 @@ public class TimelineReaderAuthenticationFilterInitializer extends TimelineAuthenticationFilterInitializer{ /** - * Initializes {@link AuthenticationWithProxyUserFilter} + * Initializes {@link AuthenticationFilter} * <p> - * Propagates to {@link AuthenticationWithProxyUserFilter} configuration all + * Propagates to {@link AuthenticationFilter} configuration all * YARN configuration properties prefixed with * {@link TimelineAuthenticationFilterInitializer#PREFIX}. * @@ -47,7 +47,7 @@ public class TimelineReaderAuthenticationFilterInitializer extends public void initFilter(FilterContainer container, Configuration conf) { setAuthFilterConfig(conf); container.addGlobalFilter("Timeline Reader Authentication Filter", - AuthenticationWithProxyUserFilter.class.getName(), + AuthenticationFilter.class.getName(), getFilterConfig()); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
