diff options
| author | Ayanda Dube <ayanda.dube@erlang-solutions.com> | 2015-10-12 17:42:45 +0100 |
|---|---|---|
| committer | Ayanda Dube <ayanda.dube@erlang-solutions.com> | 2015-10-12 17:42:45 +0100 |
| commit | d5b56ffc9e91aa35771baefe9fae1245af48a114 (patch) | |
| tree | 4de7bfd194a89951f8a593176e1defb6483217f9 /src | |
| parent | a68b8565a8d3092616ec78ce7fbf1d562354414a (diff) | |
| download | rabbitmq-server-git-d5b56ffc9e91aa35771baefe9fae1245af48a114.tar.gz | |
Fix to call list_down/1 instead of list/1
when listing down queues.
References #62
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_amqqueue.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue.erl b/src/rabbit_amqqueue.erl index 8b1efca1ec..5101c8624c 100644 --- a/src/rabbit_amqqueue.erl +++ b/src/rabbit_amqqueue.erl @@ -597,7 +597,8 @@ info_all(VHostPath, Items, Ref, AggregatorPid) -> AggregatorPid, Ref, fun(Q) -> info(Q, Items) end, list(VHostPath), continue), rabbit_control_main:emitting_map( - AggregatorPid, Ref, fun(Q) -> info_down(Q, Items) end, list(VHostPath)). + AggregatorPid, Ref, + fun(Q) -> info_down(Q, Items) end, list_down(VHostPath)). force_event_refresh(Ref) -> [gen_server2:cast(Q#amqqueue.pid, |
