You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ni...@apache.org on 2019/07/05 09:33:40 UTC

[atlas] branch master updated: ATLAS-3153 : Testcase fix due to Keycloak authentication method commit.

This is an automated email from the ASF dual-hosted git repository.

nixon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new e707147  ATLAS-3153 : Testcase fix due to Keycloak authentication method commit.
e707147 is described below

commit e7071476aaba064d0967531cda6d9221f918db4e
Author: nixonrodrigues <ni...@apache.org>
AuthorDate: Fri Jul 5 14:58:41 2019 +0530

    ATLAS-3153 : Testcase fix due to Keycloak authentication method commit.
---
 webapp/src/test/resources/test-spring-security.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/webapp/src/test/resources/test-spring-security.xml b/webapp/src/test/resources/test-spring-security.xml
index 22cb410..f77c20b 100644
--- a/webapp/src/test/resources/test-spring-security.xml
+++ b/webapp/src/test/resources/test-spring-security.xml
@@ -62,11 +62,13 @@
     </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="atlasKeycloakProvider" class="org.apache.atlas.web.security.AtlasKeycloakAuthenticationProvider"/>
     <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:constructor-arg index="4" ref="atlasKeycloakProvider" />
     </beans:bean>
 
     <beans:bean id="krbAuthenticationFilter" class="org.apache.atlas.web.filters.AtlasAuthenticationFilter">