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:
Gary Tully 2010-01-29 10:31:10 +00:00
parent ce17f58cb3
commit 17cc428b21
1 changed files with 1 additions and 1 deletions

View File

@ -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);