Skip to content

Commit

Permalink
Remove exclusive queue (#5797)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbirk authored Dec 10, 2024
1 parent 79c0dcb commit 4b809bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private void initResponseConsumers() {
rabbitAdmin.declareExchange(exchange);

// Declare a queue
final Queue queue = new Queue(queueName, IS_DURABLE_QUEUES, true, true);
final Queue queue = new Queue(queueName, IS_DURABLE_QUEUES, false, true);
rabbitAdmin.declareQueue(queue);

// Bind the queue to the exchange with a routing key
Expand Down

0 comments on commit 4b809bf

Please sign in to comment.