mirror of https://github.com/apache/activemq.git
Allow some extra time on the consumer wait to account for slow CI boxes
This commit is contained in:
parent
48ba714b30
commit
0fb24cc4c1
|
@ -149,7 +149,7 @@ public class TransactedStoreUsageSuspendResumeTest {
|
|||
sendExecutor.shutdown();
|
||||
sendExecutor.awaitTermination(10, TimeUnit.MINUTES);
|
||||
|
||||
boolean allMessagesReceived = messagesReceivedCountDown.await(5, TimeUnit.MINUTES);
|
||||
boolean allMessagesReceived = messagesReceivedCountDown.await(10, TimeUnit.MINUTES);
|
||||
if (!allMessagesReceived) {
|
||||
LOG.info("Giving up - not all received on time...");
|
||||
LOG.info("System Mem Usage: " + broker.getSystemUsage().getMemoryUsage());
|
||||
|
|
Loading…
Reference in New Issue