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:
parent
fd90a52735
commit
d3c5dbb3fe
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue