We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c849a0a commit c1eea4cCopy full SHA for c1eea4c
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/mvc/HealthMvcEndpoint.java
@@ -151,7 +151,7 @@ private boolean isCacheStale(long accessTime) {
151
if (this.cached == null) {
152
return true;
153
}
154
- return (accessTime - this.lastAccess) > this.delegate.getTimeToLive();
+ return (accessTime - this.lastAccess) >= this.delegate.getTimeToLive();
155
156
157
private boolean exposeHealthDetails(Principal principal) {
0 commit comments