KEYCLOAK-3753 Deploying app secured with OIDC to EAP6 results with Error
This commit is contained in:
parent
2acea2b2ee
commit
7f825eb415
2 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ public class KeycloakAdapterConfigDeploymentProcessor implements DeploymentUnitP
|
||||||
boolean webRequiresKC = loginConfig != null && "KEYCLOAK".equalsIgnoreCase(loginConfig.getAuthMethod());
|
boolean webRequiresKC = loginConfig != null && "KEYCLOAK".equalsIgnoreCase(loginConfig.getAuthMethod());
|
||||||
boolean isConfigured = service.isDeploymentConfigured(deploymentUnit);
|
boolean isConfigured = service.isDeploymentConfigured(deploymentUnit);
|
||||||
|
|
||||||
if ((hasSubsystemConfig || webRequiresKC) && isConfigured) {
|
if ((hasSubsystemConfig && isConfigured) || webRequiresKC) {
|
||||||
log.debug("Setting up KEYCLOAK auth method for WAR: " + deploymentUnit.getName());
|
log.debug("Setting up KEYCLOAK auth method for WAR: " + deploymentUnit.getName());
|
||||||
|
|
||||||
// if secure-deployment configuration exists for web app, we force KEYCLOAK auth method on it
|
// if secure-deployment configuration exists for web app, we force KEYCLOAK auth method on it
|
||||||
|
|
|
@ -157,7 +157,7 @@ class KeycloakSubsystemParser implements XMLStreamConstants, XMLElementReader<Li
|
||||||
credentialsToAdd.add(addCredential);
|
credentialsToAdd.add(addCredential);
|
||||||
} else {
|
} else {
|
||||||
for (Map.Entry<String, String> entry : values.entrySet()) {
|
for (Map.Entry<String, String> entry : values.entrySet()) {
|
||||||
ModelNode addCredential = getCredentialToAdd(parent, name + "" + entry.getKey(), entry.getValue());
|
ModelNode addCredential = getCredentialToAdd(parent, name + "." + entry.getKey(), entry.getValue());
|
||||||
credentialsToAdd.add(addCredential);
|
credentialsToAdd.add(addCredential);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue