summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-01-07 13:52:59 +0000
committerSimon MacMullen <simon@rabbitmq.com>2014-01-07 13:52:59 +0000
commitee33f7ce556fa1bb47daa8aee9974d5c94937791 (patch)
treef3ed37b1bb7cf39463aad828ed29c03ae0335a02
parent9ff6fcdc16326c429d66c76ed11dd1bbea4ac167 (diff)
downloadrabbitmq-server-bug25936.tar.gz
consumers/1 returns a list of 4-tuples now.bug25936
-rw-r--r--src/rabbit_amqqueue_process.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index 94cfa619..6c8b4bcd 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -325,7 +325,7 @@ terminate_shutdown(Fun, State) ->
QName = qname(State),
notify_decorators(shutdown, [], State),
[emit_consumer_deleted(Ch, CTag, QName) ||
- {Ch, CTag, _} <- consumers(State1)],
+ {Ch, CTag, _, _} <- consumers(State1)],
State1#q{backing_queue_state = Fun(BQS)}
end.