Commit d18e452f authored by Johnny Lim's avatar Johnny Lim Committed by Andy Wilkinson

Use currentHealth consistently in getHealth()

Closes gh-9832
parent 39b4ecdf
......@@ -165,7 +165,7 @@ public class HealthMvcEndpoint extends AbstractEndpointMvcAdapter<HealthEndpoint
private Health getHealth(HttpServletRequest request, Principal principal) {
Health currentHealth = getCurrentHealth();
if (exposeHealthDetails(request, principal)) {
return this.cachedHealth.health;
return currentHealth;
}
return Health.status(currentHealth.getStatus()).build();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment