Skip to content

Commit

Permalink
Fix invalid warning about transient queues being used
Browse files Browse the repository at this point in the history
This fixes the issue where RabbitMQ would warn about
transient queues being used in a cluster with no transient queues.

Fixes #12802

(cherry picked from commit 46259b5)
  • Loading branch information
mkuratczyk authored and mergify[bot] committed Nov 27, 2024
1 parent 0e3c0af commit 46616b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/rabbit/src/rabbit_db_queue.erl
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ list_transient() ->
}).

list_transient_in_mnesia() ->
Pattern = amqqueue:pattern_match_all(),
Pattern = amqqueue:pattern_match_on_durable(false),
AllQueues = mnesia:dirty_match_object(
?MNESIA_TABLE,
Pattern),
Expand Down

0 comments on commit 46616b2

Please sign in to comment.