mirror of https://github.com/apache/activemq.git
Bumping the wait time a bit to account for older system and slow disks.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1442681 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5b533c7c37
commit
4650f998db
|
@ -69,14 +69,15 @@ public class BrokerTestSupport extends CombinationTestSupport {
|
|||
protected int txGenerator;
|
||||
protected int tempDestGenerator;
|
||||
protected PersistenceAdapter persistenceAdapter;
|
||||
|
||||
|
||||
protected String queueName = "TEST";
|
||||
|
||||
protected int maxWait = 4000;
|
||||
protected int maxWait = 10000;
|
||||
|
||||
protected SystemUsage memoryManager;
|
||||
protected PolicyMap policyMap = new PolicyMap();
|
||||
|
||||
@Override
|
||||
protected void setUp() throws Exception {
|
||||
super.setUp();
|
||||
broker = createBroker();
|
||||
|
@ -97,6 +98,7 @@ public class BrokerTestSupport extends CombinationTestSupport {
|
|||
return broker;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void tearDown() throws Exception {
|
||||
broker.stop();
|
||||
broker.waitUntilStopped();
|
||||
|
@ -352,5 +354,4 @@ public class BrokerTestSupport extends CombinationTestSupport {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue