mirror of https://github.com/apache/activemq.git
Disable lazy dispatch. Was causing queue browser tests to fail.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@639539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
299a98d48f
commit
9e13dc67fa
|
@ -43,7 +43,7 @@ public abstract class BaseDestination implements Destination {
|
||||||
private int maxPageSize=100;
|
private int maxPageSize=100;
|
||||||
private boolean useCache=true;
|
private boolean useCache=true;
|
||||||
private int minimumMessageSize=1024;
|
private int minimumMessageSize=1024;
|
||||||
private boolean lazyDispatch=true;
|
private boolean lazyDispatch=false;
|
||||||
protected final DestinationStatistics destinationStatistics = new DestinationStatistics();
|
protected final DestinationStatistics destinationStatistics = new DestinationStatistics();
|
||||||
protected final BrokerService brokerService;
|
protected final BrokerService brokerService;
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ public class PolicyEntry extends DestinationMapEntry {
|
||||||
private long minimumMessageSize=1024;
|
private long minimumMessageSize=1024;
|
||||||
private boolean useConsumerPriority=true;
|
private boolean useConsumerPriority=true;
|
||||||
private boolean strictOrderDispatch=false;
|
private boolean strictOrderDispatch=false;
|
||||||
private boolean lazyDispatch=true;
|
private boolean lazyDispatch=false;
|
||||||
|
|
||||||
public void configure(Broker broker,Queue queue) {
|
public void configure(Broker broker,Queue queue) {
|
||||||
if (dispatchPolicy != null) {
|
if (dispatchPolicy != null) {
|
||||||
|
|
Loading…
Reference in New Issue