mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-26 13:50:48 +00:00
Disable single thread sender in JGroups
Closes #49149 Signed-off-by: Pedro Ruivo <1492066+pruivo@users.noreply.github.com> Co-authored-by: Pedro Ruivo <1492066+pruivo@users.noreply.github.com>
This commit is contained in:
+6
-1
@@ -344,7 +344,12 @@ public final class JGroupsConfigurator {
|
||||
);
|
||||
|
||||
if (!udp && InfinispanUtils.isVirtualThreadsEnabled())
|
||||
list.add(new ProtocolConfiguration(TCP.class.getSimpleName(), Map.of("bundler_type", "per-destination")));
|
||||
list.add(new ProtocolConfiguration(TCP.class.getSimpleName(),
|
||||
Map.of(
|
||||
"bundler_type", "per-destination",
|
||||
"bundler.use_single_sender_thread", "false"
|
||||
))
|
||||
);
|
||||
|
||||
if (tracingEnabled) {
|
||||
list.add(new ProtocolConfiguration(OPEN_TELEMETRY.class.getName(), Map.of(
|
||||
|
||||
Reference in New Issue
Block a user