Skip to content

Commit

Permalink
Make sendTo.replies test queue args consistent
Browse files Browse the repository at this point in the history
- changed to non-autoDelete in 2.1.x
  • Loading branch information
garyrussell committed Aug 23, 2019
1 parent 4c2e47c commit c1566ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ public TxClassLevel txClassLevel() {

@Bean
public org.springframework.amqp.core.Queue sendToReplies() {
return new org.springframework.amqp.core.Queue(sendToRepliesBean(), false, false, true);
return new org.springframework.amqp.core.Queue(sendToRepliesBean(), false, false, false);
}

@Bean
Expand Down Expand Up @@ -1497,7 +1497,7 @@ public String messagingMessage(@SuppressWarnings("rawtypes") org.springframework
public static class DeleteQueuesExecutionListener extends AbstractTestExecutionListener {

@Override
public void afterTestClass(TestContext testContext) throws Exception {
public void afterTestClass(TestContext testContext) {
brokerRunning.removeTestQueues("sendTo.replies", "sendTo.replies.spel");
}

Expand Down

0 comments on commit c1566ff

Please sign in to comment.