Skip to content

Commit d3c5dbb

Browse files
committed
Apply remote store workaround also for configuration via CLI options
Closes keycloak#27409 Signed-off-by: Alexander Schwartz <[email protected]>
1 parent fd90a52 commit d3c5dbb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

quarkus/runtime/src/main/java/org/keycloak/quarkus/runtime/storage/legacy/infinispan/CacheManagerFactory.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,11 @@ private void configureRemoteStores(ConfigurationBuilderHolder builder) {
244244
.saslMechanism(SCRAM_SHA_512)
245245
.addServer()
246246
.host(cacheRemoteHost)
247-
.port(cacheRemotePort);
247+
.port(cacheRemotePort)
248+
// This is a workaround for the following issue https://github.com/keycloak/keycloak/issues/27117 and should be removed when the issue is fixed
249+
.async().enable().modificationQueueSize(1024)
250+
// end of workaround
251+
;
248252
});
249253
}
250254
}

0 commit comments

Comments
 (0)