Skip to content

Commit 56eb839

Browse files
author
Simon MacMullen
committed
More sacrifices to the gods of CI.
1 parent f959baf commit 56eb839

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ public class Policies extends BrokerTestCase {
4242
channel.exchangeDeclare("has-ae-args", "fanout", false, false, args);
4343
}
4444

45-
public void testAlternateExchange() throws IOException {
45+
public void testAlternateExchange() throws IOException, InterruptedException {
4646
String q = declareQueue();
4747
channel.exchangeDeclare("ae", "fanout", false, true, null);
4848
channel.queueBind(q, "ae", "");
4949
basicPublishVolatile("has-ae", "");
50+
Thread.sleep(DELAY);
5051
assertDelivered(q, 1);
5152
clearPolicies();
5253

0 commit comments

Comments
 (0)