Allow some extra time on the consumer wait to account for slow CI boxes

This commit is contained in:
Timothy Bish 2016-03-30 14:23:33 -04:00
parent 48ba714b30
commit 0fb24cc4c1
1 changed files with 1 additions and 1 deletions

View File

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