diff --git a/deps/rabbitmq_management/app.bzl b/deps/rabbitmq_management/app.bzl index 1f8429e9f7..7fd01cd065 100644 --- a/deps/rabbitmq_management/app.bzl +++ b/deps/rabbitmq_management/app.bzl @@ -98,6 +98,7 @@ def all_beam_files(name = "all_beam_files"): "src/rabbit_mgmt_wm_quorum_queue_replicas_delete_member.erl", "src/rabbit_mgmt_wm_quorum_queue_replicas_grow.erl", "src/rabbit_mgmt_wm_quorum_queue_replicas_shrink.erl", + "src/rabbit_mgmt_wm_quorum_queue_status.erl", "src/rabbit_mgmt_wm_rebalance_queues.erl", "src/rabbit_mgmt_wm_redirect.erl", "src/rabbit_mgmt_wm_reset.erl", @@ -230,6 +231,7 @@ def all_test_beam_files(name = "all_test_beam_files"): "src/rabbit_mgmt_wm_quorum_queue_replicas_delete_member.erl", "src/rabbit_mgmt_wm_quorum_queue_replicas_grow.erl", "src/rabbit_mgmt_wm_quorum_queue_replicas_shrink.erl", + "src/rabbit_mgmt_wm_quorum_queue_status.erl", "src/rabbit_mgmt_wm_rebalance_queues.erl", "src/rabbit_mgmt_wm_redirect.erl", "src/rabbit_mgmt_wm_reset.erl", @@ -453,6 +455,7 @@ def all_srcs(name = "all_srcs"): "src/rabbit_mgmt_wm_quorum_queue_replicas_delete_member.erl", "src/rabbit_mgmt_wm_quorum_queue_replicas_grow.erl", "src/rabbit_mgmt_wm_quorum_queue_replicas_shrink.erl", + "src/rabbit_mgmt_wm_quorum_queue_status.erl", "src/rabbit_mgmt_wm_rebalance_queues.erl", "src/rabbit_mgmt_wm_redirect.erl", "src/rabbit_mgmt_wm_reset.erl", diff --git a/deps/rabbitmq_management/src/rabbit_mgmt_wm_quorum_queue_status.erl b/deps/rabbitmq_management/src/rabbit_mgmt_wm_quorum_queue_status.erl index f64f47d2ec..abde4acc41 100644 --- a/deps/rabbitmq_management/src/rabbit_mgmt_wm_quorum_queue_status.erl +++ b/deps/rabbitmq_management/src/rabbit_mgmt_wm_quorum_queue_status.erl @@ -51,7 +51,7 @@ queue(ReqData) -> queue(VHost, QName) -> Name = rabbit_misc:r(VHost, queue, QName), case rabbit_amqqueue:lookup(Name) of - {ok, Q} -> rabbit_quorum_queue:status(VHost, QName); + {ok, _Q} -> rabbit_quorum_queue:status(VHost, QName); {error, not_found} -> not_found end. diff --git a/moduleindex.yaml b/moduleindex.yaml index f6e7ba55ba..d115ebb388 100755 --- a/moduleindex.yaml +++ b/moduleindex.yaml @@ -988,6 +988,7 @@ rabbitmq_management: - rabbit_mgmt_wm_quorum_queue_replicas_delete_member - rabbit_mgmt_wm_quorum_queue_replicas_grow - rabbit_mgmt_wm_quorum_queue_replicas_shrink +- rabbit_mgmt_wm_quorum_queue_status - rabbit_mgmt_wm_rebalance_queues - rabbit_mgmt_wm_redirect - rabbit_mgmt_wm_reset