Skip to content

Commit 119d110

Browse files
committed
Disable Redis Health check in favor of redisSession check
1 parent c7cc41d commit 119d110

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/eu/openanalytics/containerproxy/ContainerProxyApplication.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ private static void setDefaultProperties(SpringApplication app) {
188188
properties.put("management.endpoint.health.group.readiness.include", "readinessProbe,redisSession");
189189
// disable ldap health endpoint
190190
properties.put("management.health.ldap.enabled", false);
191+
// disable default redis health endpoint since it's managed by redisSession
192+
properties.put("management.health.redis.enabled", "false");
191193
// enable Kubernetes porobes
192194
properties.put("management.endpoint.health.probes.enabled", true);
193195

0 commit comments

Comments
 (0)