Apply remote store workaround also for configuration via CLI options

Closes #27409

Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
Alexander Schwartz 2024-03-01 09:23:41 +01:00 committed by Alexander Schwartz
parent fd90a52735
commit d3c5dbb3fe

View file

@ -244,7 +244,11 @@ public class CacheManagerFactory {
.saslMechanism(SCRAM_SHA_512)
.addServer()
.host(cacheRemoteHost)
.port(cacheRemotePort);
.port(cacheRemotePort)
// This is a workaround for the following issue https://github.com/keycloak/keycloak/issues/27117 and should be removed when the issue is fixed
.async().enable().modificationQueueSize(1024)
// end of workaround
;
});
}
}