Skip to content

Commit

Permalink
logging_SUITE: Don't use non-exclusive transient queues
Browse files Browse the repository at this point in the history
[Why]
They are deprecated. Currently, we simply got a warning in the logs but
in a few minor versions, the testcase will start to fail because it
may not be able to declare a queue.
  • Loading branch information
dumbbell committed Aug 18, 2023
1 parent 3cc3a38 commit df416eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/rabbit/test/logging_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ logging_to_exchange_works(Config) ->
?assertMatch(
#'queue.declare_ok'{},
amqp_channel:call(Chan, #'queue.declare'{queue = QName,
durable = false})),
durable = true})),
?assertMatch(
#'queue.bind_ok'{},
amqp_channel:call(Chan, #'queue.bind'{queue = QName,
Expand Down

0 comments on commit df416eb

Please sign in to comment.