Skip to content

Commit 42b3a6f

Browse files
SimonUngemergify[bot]
authored andcommitted
bazel fixes
(cherry picked from commit 782823f) (cherry picked from commit 97f8062)
1 parent 23de4dd commit 42b3a6f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

deps/rabbitmq_management/app.bzl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ def all_beam_files(name = "all_beam_files"):
9999
"src/rabbit_mgmt_wm_quorum_queue_replicas_delete_member.erl",
100100
"src/rabbit_mgmt_wm_quorum_queue_replicas_grow.erl",
101101
"src/rabbit_mgmt_wm_quorum_queue_replicas_shrink.erl",
102+
"src/rabbit_mgmt_wm_quorum_queue_status.erl",
102103
"src/rabbit_mgmt_wm_rebalance_queues.erl",
103104
"src/rabbit_mgmt_wm_redirect.erl",
104105
"src/rabbit_mgmt_wm_reset.erl",
@@ -232,6 +233,7 @@ def all_test_beam_files(name = "all_test_beam_files"):
232233
"src/rabbit_mgmt_wm_quorum_queue_replicas_delete_member.erl",
233234
"src/rabbit_mgmt_wm_quorum_queue_replicas_grow.erl",
234235
"src/rabbit_mgmt_wm_quorum_queue_replicas_shrink.erl",
236+
"src/rabbit_mgmt_wm_quorum_queue_status.erl",
235237
"src/rabbit_mgmt_wm_rebalance_queues.erl",
236238
"src/rabbit_mgmt_wm_redirect.erl",
237239
"src/rabbit_mgmt_wm_reset.erl",
@@ -455,6 +457,7 @@ def all_srcs(name = "all_srcs"):
455457
"src/rabbit_mgmt_wm_quorum_queue_replicas_delete_member.erl",
456458
"src/rabbit_mgmt_wm_quorum_queue_replicas_grow.erl",
457459
"src/rabbit_mgmt_wm_quorum_queue_replicas_shrink.erl",
460+
"src/rabbit_mgmt_wm_quorum_queue_status.erl",
458461
"src/rabbit_mgmt_wm_rebalance_queues.erl",
459462
"src/rabbit_mgmt_wm_redirect.erl",
460463
"src/rabbit_mgmt_wm_reset.erl",

deps/rabbitmq_management/src/rabbit_mgmt_wm_quorum_queue_status.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ queue(ReqData) ->
5151
queue(VHost, QName) ->
5252
Name = rabbit_misc:r(VHost, queue, QName),
5353
case rabbit_amqqueue:lookup(Name) of
54-
{ok, Q} -> rabbit_quorum_queue:status(VHost, QName);
54+
{ok, _Q} -> rabbit_quorum_queue:status(VHost, QName);
5555
{error, not_found} -> not_found
5656
end.
5757

moduleindex.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,6 +1015,7 @@ rabbitmq_management:
10151015
- rabbit_mgmt_wm_quorum_queue_replicas_delete_member
10161016
- rabbit_mgmt_wm_quorum_queue_replicas_grow
10171017
- rabbit_mgmt_wm_quorum_queue_replicas_shrink
1018+
- rabbit_mgmt_wm_quorum_queue_status
10181019
- rabbit_mgmt_wm_rebalance_queues
10191020
- rabbit_mgmt_wm_redirect
10201021
- rabbit_mgmt_wm_reset

0 commit comments

Comments
 (0)