p4z
p4z

Reputation: 31

Is "health.config.enabled" still being processed, and where?

Thanks.

Upvotes: 2

Views: 2004

Answers (1)

spencergibb
spencergibb

Reputation: 25157

It is replaced by @ConditionalOnEnabledHealthIndicator("config") (see here).

From the javadoc for that annotation

Blockquote @Conditional that checks whether a default health indicator is enabled. Matches if the value of the management.health.<name>.enabled

So the new property is management.health.config.enabled

Upvotes: 0

Related Questions