From 744c0bf3290236092c08687207243ecc74f824d6 Mon Sep 17 00:00:00 2001 From: Bela Ban Date: Wed, 24 Apr 2024 12:12:05 +0200 Subject: [PATCH] Set TQB.drop_when_fulll to true by default (https://issues.redhat.com/browse/JGRP-2793) --- src/org/jgroups/protocols/TransferQueueBundler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/jgroups/protocols/TransferQueueBundler.java b/src/org/jgroups/protocols/TransferQueueBundler.java index 8f8abf1157..28a7f269fb 100644 --- a/src/org/jgroups/protocols/TransferQueueBundler.java +++ b/src/org/jgroups/protocols/TransferQueueBundler.java @@ -25,7 +25,7 @@ public class TransferQueueBundler extends BaseBundler implements Runnable { @Property(description="When the queue is full, senders will drop a message rather than wait until space " + "is available (https://issues.redhat.com/browse/JGRP-2765)") - protected boolean drop_when_full; + protected boolean drop_when_full=true; protected volatile boolean running=true; @ManagedAttribute(description="Number of times a message was sent because the queue was full", type= SCALAR)