mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-3609 - Turn inactivity monitor thread off by default, new default 0
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1207239 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
00fb101e2a
commit
6813691a3d
|
@ -195,7 +195,7 @@ public class BrokerService implements Service {
|
|||
private Scheduler scheduler;
|
||||
private ThreadPoolExecutor executor;
|
||||
private boolean slave = true;
|
||||
private int schedulePeriodForDestinationPurge=5000;
|
||||
private int schedulePeriodForDestinationPurge= 0;
|
||||
private int maxPurgedDestinationsPerSweep = 0;
|
||||
private BrokerContext brokerContext;
|
||||
private boolean networkConnectorStartAsync = false;
|
||||
|
|
|
@ -259,6 +259,7 @@ public class RequestReplyNoAdvisoryNetworkTest extends JmsMultipleBrokersTestSup
|
|||
broker.setAdvisorySupport(false);
|
||||
broker.setPersistent(false);
|
||||
broker.setUseJmx(false);
|
||||
broker.setSchedulePeriodForDestinationPurge(1000);
|
||||
|
||||
PolicyMap map = new PolicyMap();
|
||||
PolicyEntry tempReplyQPolicy = new PolicyEntry();
|
||||
|
|
Loading…
Reference in New Issue