mirror of https://github.com/apache/activemq.git
doubling the timeout for slow/loaded machines - intermittent failur hudson
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@904451 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ce17f58cb3
commit
17cc428b21
|
@ -347,7 +347,7 @@ public class DurableConsumerTest extends CombinationTestSupport{
|
|||
|
||||
consumer = consumerSession.createDurableSubscriber(topic, CONSUMER_NAME);
|
||||
for (int i = 0; i < COUNT; i++) {
|
||||
Message msg = consumer.receive(5000);
|
||||
Message msg = consumer.receive(10000);
|
||||
assertNotNull("Missing message: " + i, msg);
|
||||
if (i != 0 && i % 1000 == 0) {
|
||||
LOG.info("Received msg " + i);
|
||||
|
|
Loading…
Reference in New Issue