diff options
| -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, |
