When I access the /health
endpoint from my Spring Boot application (1.2.4.RELEASE) it is returning a status of DOWN
:
{
status: \"DO
I got the same issue when I upgraded an application from spring boot 1.5 to 2.3.5.RELEASE.
Adding endpoints.health.sensitive
and other properties as mentioned in other answers to application.properties
didn't work for me.
I fixed the issue by excluding RabbitAutoConfiguration
.
@EnableAutoConfiguration(exclude = { RabbitAutoConfiguration.class })