DurableConsumerTest - give it even more time to complete on slow machines

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@906983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2010-02-05 15:58:44 +00:00
parent a866d93b6f
commit ecaacd852e
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ public class DurableConsumerTest extends CombinationTestSupport{
LOG.info("receivedCount: " + receivedCount.get());
return receivedCount.get() == numMessages;
}
}, 120 * 1000);
}, 240 * 1000);
assertEquals("got required some messages", numMessages, receivedCount.get());
assertTrue("no exceptions, but: " + exceptions, exceptions.isEmpty());
}