Skip to content

Commit 2971199

Browse files
committed
Merge branch '4.3.x-stable' into 4.x.x-stable
2 parents 901b51a + 4df6502 commit 2971199

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/rabbitmq/client/test/functional/TTLHandling.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ protected void releaseResources() throws IOException {
143143
}
144144

145145
@Test public void expiryWithRequeue() throws Exception {
146-
declareAndBindQueue(200);
146+
declareAndBindQueue(400);
147147

148148
publish(MSG[0]);
149-
Thread.sleep(100);
149+
Thread.sleep(200);
150150
publish(MSG[1]);
151151
publish(MSG[2]);
152152

@@ -156,7 +156,7 @@ protected void releaseResources() throws IOException {
156156
closeChannel();
157157
openChannel();
158158

159-
Thread.sleep(110);
159+
Thread.sleep(300);
160160
expectBodyAndRemainingMessages(MSG[1], 1);
161161
expectBodyAndRemainingMessages(MSG[2], 0);
162162
}

0 commit comments

Comments
 (0)