try other authenticator if there is a chain

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1449092 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-02-22 16:05:23 +00:00
parent ad33df69c8
commit 1bbfd9482d
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ import java.util.List;
* @author Olivier Lamy
* @since 1.4-M4
*/
@Service( "authenticator#archiva" )
@Service("authenticator#archiva")
public class ArchivaUserManagerAuthenticator
extends AbstractAuthenticator
implements Authenticator
@ -200,7 +200,7 @@ public class ArchivaUserManagerAuthenticator
"Login for user " + source.getUsername()
+ " failed. user not found." ) );
}
catch ( UserManagerException e )
catch ( Exception e )
{
log.warn( "Login for user {} failed, message: {}", source.getUsername(), e.getMessage() );
resultException = e;