@@ -157,39 +157,44 @@ rabbitmq_run(
157157 visibility = ["//visibility:public" ],
158158)
159159
160- # Allow us to `bazel run broker`
160+ # Allows us to `bazel run broker`
161161# for the equivalent of `make run-broker`
162162rabbitmq_run_command (
163163 name = "broker" ,
164164 rabbitmq_run = ":rabbitmq-run" ,
165165 subcommand = "run-broker" ,
166166)
167167
168- # Allow us to `bazel run background-broker`
168+ # Allows us to `bazel run background-broker`
169169# to start a broker in the background
170170rabbitmq_run_command (
171171 name = "background-broker" ,
172172 rabbitmq_run = ":rabbitmq-run" ,
173173 subcommand = "start-background-broker" ,
174174)
175175
176- # Allow us to `bazel run stop-broker`
176+ # Allows us to `bazel run stop-broker`
177177# Useful is broker started in the background
178178rabbitmq_run_command (
179179 name = "stop-broker" ,
180180 rabbitmq_run = ":rabbitmq-run" ,
181181 subcommand = "stop-node" ,
182182)
183183
184+ < << << << HEAD
184185# Allow us to `bazel run start-cluster`
186+ == == == =
187+
188+ # Allows us to `bazel run start-cluster`
189+ >> >> >> > 439 bc35916 (BUILD .bazel : fix a few typos )
185190# for the equivalent of `make start-cluster`
186191rabbitmq_run_command (
187192 name = "start-cluster" ,
188193 rabbitmq_run = ":rabbitmq-run" ,
189194 subcommand = "start-cluster" ,
190195)
191196
192- # Allow us to `bazel run stop-cluster`
197+ # Allows us to `bazel run stop-cluster`
193198# for the equivalent of `make stop-cluster`
194199rabbitmq_run_command (
195200 name = "stop-cluster" ,
0 commit comments