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
  • Loading branch information
mkuratczyk committed Nov 27, 2024
1 parent a08f770 commit aac18bf
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 aac18bf

Please sign in to comment.