diff options
| author | dcorbacho <dparracorbacho@piotal.io> | 2020-08-11 15:41:10 +0100 |
|---|---|---|
| committer | dcorbacho <dparracorbacho@piotal.io> | 2020-08-11 15:41:10 +0100 |
| commit | ad0c0bd294b5f63b3531a22a6082c3592284e644 (patch) | |
| tree | 5107cb4237d4c4ffc4719963611ed102a6a72b7b /src | |
| parent | a82711b192446c7894ff3d66ab09205d190c8214 (diff) | |
| download | rabbitmq-server-git-ad0c0bd294b5f63b3531a22a6082c3592284e644.tar.gz | |
Fix parsing of queue arguments on definitions list
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_definitions.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit_definitions.erl b/src/rabbit_definitions.erl index b2fbb81e45..f67e6dca48 100644 --- a/src/rabbit_definitions.erl +++ b/src/rabbit_definitions.erl @@ -663,14 +663,13 @@ queue_definition(Q) -> rabbit_quorum_queue -> quorum; T -> T end, - Arguments = [{Key, Value} || {Key, _Type, Value} <- amqqueue:get_arguments(Q)], #{ <<"vhost">> => VHost, <<"name">> => Name, <<"type">> => Type, <<"durable">> => amqqueue:is_durable(Q), <<"auto_delete">> => amqqueue:is_auto_delete(Q), - <<"arguments">> => rabbit_misc:amqp_table(Arguments) + <<"arguments">> => rabbit_misc:amqp_table(amqqueue:get_arguments(Q)) }. list_bindings() -> |
