Skip to content

Commit 4ed02b6

Browse files
committed
Increase test assertion timeout
For GHA CI.
1 parent ea4447a commit 4ed02b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/rabbitmq/perf/it/ConnectionRecoveryIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public void shouldRecoverWhenConnectionsAreKilledAndUsingPublishingInterval(Cons
264264
waitAtMost(10, () -> msgConsumed.get() >= 3 * producerConsumerCount);
265265
int messageCountBeforeClosing = msgConsumed.get();
266266
closeAllConnections();
267-
waitAtMost(10, () -> msgConsumed.get() >= 2 * messageCountBeforeClosing);
267+
waitAtMost(20, () -> msgConsumed.get() >= 2 * messageCountBeforeClosing);
268268
assertThat(testIsDone.get()).isFalse();
269269
}
270270

0 commit comments

Comments
 (0)