diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-01-07 13:52:59 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-01-07 13:52:59 +0000 |
| commit | 87b6103404d6868f841027fc819ada99c7d1951a (patch) | |
| tree | f3ed37b1bb7cf39463aad828ed29c03ae0335a02 | |
| parent | 089ee7eb5d70ab867e892dab4312b36eb2c1e6db (diff) | |
| download | rabbitmq-server-git-87b6103404d6868f841027fc819ada99c7d1951a.tar.gz | |
consumers/1 returns a list of 4-tuples now.
| -rw-r--r-- | src/rabbit_amqqueue_process.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl index 94cfa61980..6c8b4bcd25 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. |
