KEYCLOAK-5856 Fix infinite loop
This commit is contained in:
parent
24b7e318ca
commit
36314c51d6
1 changed files with 2 additions and 2 deletions
|
@ -1058,7 +1058,7 @@ public class IdentityBrokerService implements IdentityProvider.AuthenticationCal
|
|||
}
|
||||
|
||||
private Response redirectToErrorPage(AuthenticationSessionModel authSession,String message, Object ... parameters) {
|
||||
return redirectToErrorPage(authSession, message, null, parameters);
|
||||
return redirectToErrorPage(authSession, Response.Status.INTERNAL_SERVER_ERROR, message, null, parameters);
|
||||
}
|
||||
|
||||
private Response redirectToErrorPage(Response.Status status, String message, Object ... parameters) {
|
||||
|
|
Loading…
Reference in a new issue