We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb1db3 commit 91d61cbCopy full SHA for 91d61cb
src/test/java/com/rabbitmq/stream/impl/StreamConsumerTest.java
@@ -560,7 +560,7 @@ void externalOffsetTrackingWithSubscriptionListener() throws Exception {
560
assertThat(offsetTracking.get()).isGreaterThanOrEqualTo(messageCount - 1);
561
562
Host.killConnection("rabbitmq-stream-consumer");
563
- waitAtMost(RECOVERY_DELAY.multipliedBy(2), () -> subscriptionListenerCallCount.get() == 2);
+ waitAtMost(recoveryInitialDelay.multipliedBy(2), () -> subscriptionListenerCallCount.get() == 2);
564
565
publish.run();
566
waitAtMost(5, () -> receivedMessages.get() == messageCount * 2);
0 commit comments