Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ public void setProvidersPath(Path providersPath) {
this.providersPath = providersPath;
}

public void setProvidersPath(String providersPath) {
// https://github.com/keycloak/keycloak/issues/20455 Overloading fails time to time with a mismatch error, most probably an Arquillian class reflection bug.
public void setProvidersPathString(String providersPath) {
this.providersPath = Paths.get(providersPath);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@
<property name="adapterImplClass">org.keycloak.testsuite.arquillian.containers.KeycloakQuarkusServerDeployableContainer</property>
<property name="bindHttpPortOffset">${auth.server.port.offset}</property>
<property name="importFile">${migration.import.file.name}</property>
<property name="providersPath">${keycloak.migration.home}</property>
<property name="providersPathString">${keycloak.migration.home}</property>
<property name="javaOpts">
-Xms512m
-Xmx512m
Expand Down