We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 901b51a + 4df6502 commit 2971199Copy full SHA for 2971199
src/test/java/com/rabbitmq/client/test/functional/TTLHandling.java
@@ -143,10 +143,10 @@ protected void releaseResources() throws IOException {
143
}
144
145
@Test public void expiryWithRequeue() throws Exception {
146
- declareAndBindQueue(200);
+ declareAndBindQueue(400);
147
148
publish(MSG[0]);
149
- Thread.sleep(100);
+ Thread.sleep(200);
150
publish(MSG[1]);
151
publish(MSG[2]);
152
@@ -156,7 +156,7 @@ protected void releaseResources() throws IOException {
156
closeChannel();
157
openChannel();
158
159
- Thread.sleep(110);
+ Thread.sleep(300);
160
expectBodyAndRemainingMessages(MSG[1], 1);
161
expectBodyAndRemainingMessages(MSG[2], 0);
162
0 commit comments