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 f4c970e commit 0ce50eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,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 @@ -1675,7 +1675,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 0ce50eb

Please sign in to comment.