Skip to content

Commit

Permalink
Drop a test for the CMQ-specific health check, see rabbitmq/rabbitmq-…
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jun 24, 2024
1 parent 9f5bac1 commit e90f4b0
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions health_checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,23 +115,6 @@ var _ = Describe("Health checks", func() {
})
})

Context("GET /health/checks/node-is-mirror-sync-critical", func() {
It("returns decoded response", func() {
conn := openConnection("/")
defer conn.Close()

ch, err := conn.Channel()
Ω(err).Should(BeNil())
defer ch.Close()

res, err := rmqc.HealthCheckNodeIsMirrorSyncCritical()
Ω(err).Should(BeNil())

Ω(res.Ok()).Should(BeTrue())
Ω(res.Status).Should(Equal("ok"))
})
})

Context("GET /health/checks/node-is-quorum-critical", func() {
It("returns decoded response", func() {
conn := openConnection("/")
Expand Down

0 comments on commit e90f4b0

Please sign in to comment.