Skip to content

Commit ed596e0

Browse files
author
Simon MacMullen
committed
Merge heads
2 parents 478d572 + d0d50ca commit ed596e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/src/com/rabbitmq/client/test/server/DurableBindingLifecycle.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ public void testTransientExchangeDurableQueue() throws IOException {
143143
// the transient X alive
144144
if (clusteredConnection != null) {
145145
channel.exchangeDeclare("transientX", "fanout", false);
146-
declareAndBindDurableQueue("durableQ", "transientX", "");
146+
channel.queueDeclare("durableQ", true, false, false, null);
147+
channel.queueBind("durableQ", "transientX", "");
147148

148149
restartPrimary();
149150

0 commit comments

Comments
 (0)