Open
Description
Hi.
I'm using Spring Boot 2.6.6 and trying to use time-to-live
property for health groups.
The management.endpoint.health.cache.time-to-live=120s
property in application.properties
works fine to cache health check results when I call /actuator/health
, but if I call /actuator/health/deep
(where deep
is group), I get no cache results.
The management.endpoint.health.group.deep.cache.time-to-live=120s
property also doesn't work.
I found a task with this problem on Stack Overflow, but there was no answer.