ATLAS-1804: Testcase fix for PAM authentication
Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/399aca8d Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/399aca8d Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/399aca8d Branch: refs/heads/0.8-incubating Commit: 399aca8d8f6f5294174616f3755bee20341a205d Parents: a0a27be Author: nixonrodrigues <[email protected]> Authored: Thu Jun 8 20:58:16 2017 +0530 Committer: nixonrodrigues <[email protected]> Committed: Fri Jun 9 00:51:09 2017 +0530 ---------------------------------------------------------------------- webapp/src/test/resources/test-spring-security.xml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/399aca8d/webapp/src/test/resources/test-spring-security.xml ---------------------------------------------------------------------- diff --git a/webapp/src/test/resources/test-spring-security.xml b/webapp/src/test/resources/test-spring-security.xml index 0ef15d7..4455b0a 100644 --- a/webapp/src/test/resources/test-spring-security.xml +++ b/webapp/src/test/resources/test-spring-security.xml @@ -62,10 +62,12 @@ <beans:constructor-arg ref="userDetailsService"/> </beans:bean> <beans:bean id="atlasADProvider" class="org.apache.atlas.web.security.AtlasADAuthenticationProvider"/> + <beans:bean id="atlasPamProvider" class="org.apache.atlas.web.security.AtlasPamAuthenticationProvider"/> <beans:bean id="atlasAuthenticationProvider" class="org.apache.atlas.web.security.AtlasAuthenticationProvider"> <beans:constructor-arg index="0" ref="atlasLDAPProvider"/> <beans:constructor-arg index="1" ref="atlasFileProvider"/> <beans:constructor-arg index="2" ref="atlasADProvider"/> + <beans:constructor-arg index="3" ref="atlasPamProvider"/> </beans:bean> <beans:bean id="krbAuthenticationFilter" class="org.apache.atlas.web.filters.AtlasAuthenticationFilter">
