Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I disable the refreshScope health indicator in spring boot + cloud?

I've disabled the config server health indicator with health.config.enabled=false but that isn't disabling the refreshScope health indicator.

Actuator health check response

like image 614
dev_feed Avatar asked Oct 16 '17 16:10

dev_feed


1 Answers

Use:

management.health.refresh.enabled=false
like image 190
glytching Avatar answered Nov 10 '22 08:11

glytching