KEYCLOAK-1779
This commit is contained in:
parent
59da0f90f8
commit
e6745532ce
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ public class KeycloakAdapterConfigDeploymentProcessor implements DeploymentUnitP
|
|||
// if secure-deployment configuration exists for web app, we force KEYCLOAK auth method on it
|
||||
// otherwise we only set up KEYCLOAK auth if it's requested through web.xml auth-method
|
||||
LoginConfigMetaData loginConfig = webMetaData.getLoginConfig();
|
||||
if (!service.isSecureDeployment(deploymentName) && (loginConfig == null || !loginConfig.getAuthMethod().equalsIgnoreCase("KEYCLOAK"))) {
|
||||
if (!service.isSecureDeployment(deploymentName) || loginConfig == null || !loginConfig.getAuthMethod().equalsIgnoreCase("KEYCLOAK")) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue