Skip to content

Commit 0ce50eb

Browse files
committed
Make sendTo.replies test queue args consistent
- changed to non-autoDelete in 2.1.x
1 parent f4c970e commit 0ce50eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-rabbit/src/test/java/org/springframework/amqp/rabbit/annotation/EnableRabbitIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ public TxClassLevel txClassLevel() {
13451345

13461346
@Bean
13471347
public org.springframework.amqp.core.Queue sendToReplies() {
1348-
return new org.springframework.amqp.core.Queue(sendToRepliesBean(), false, false, true);
1348+
return new org.springframework.amqp.core.Queue(sendToRepliesBean(), false, false, false);
13491349
}
13501350

13511351
@Bean
@@ -1675,7 +1675,7 @@ public String messagingMessage(@SuppressWarnings("rawtypes") org.springframework
16751675
public static class DeleteQueuesExecutionListener extends AbstractTestExecutionListener {
16761676

16771677
@Override
1678-
public void afterTestClass(TestContext testContext) throws Exception {
1678+
public void afterTestClass(TestContext testContext) {
16791679
brokerRunning.removeTestQueues("sendTo.replies", "sendTo.replies.spel");
16801680
}
16811681

0 commit comments

Comments
 (0)