Skip to content

Commit 46616b2

Browse files
mkuratczykmergify[bot]
authored andcommitted
Fix invalid warning about transient queues being used
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)
1 parent 0e3c0af commit 46616b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_db_queue.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ list_transient() ->
985985
}).
986986

987987
list_transient_in_mnesia() ->
988-
Pattern = amqqueue:pattern_match_all(),
988+
Pattern = amqqueue:pattern_match_on_durable(false),
989989
AllQueues = mnesia:dirty_match_object(
990990
?MNESIA_TABLE,
991991
Pattern),

0 commit comments

Comments
 (0)