give consumer a little more time for slower hardware

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1181711 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-10-11 11:09:39 +00:00
parent c8f42e72fb
commit ab9bce6147
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
*/
package org.apache.activemq.broker;
import java.util.concurrent.TimeUnit;
import javax.jms.JMSException;
import javax.management.InstanceNotFoundException;
import javax.management.MalformedObjectNameException;
@ -205,7 +206,7 @@ public class XARecoveryBrokerTest extends BrokerRestartTestSupport {
// We should get the committed transactions.
for (int i = 0; i < expectedMessageCount(4, destination); i++) {
Message m = receiveMessage(connection);
Message m = receiveMessage(connection, TimeUnit.SECONDS.toMillis(10));
assertNotNull(m);
}