diff --git a/build.gradle b/build.gradle index 019d43a..8795ed1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - osisVersion = '2.2.4' + osisVersion = '2.2.5' vaultclientVersion = '1.1.2' springBootVersion = '2.7.6' } diff --git a/osis-app/src/main/java/com/scality/osis/healthcheck/UtapiHealthIndicator.java b/osis-app/src/main/java/com/scality/osis/healthcheck/UtapiHealthIndicator.java deleted file mode 100644 index 4fb76be..0000000 --- a/osis-app/src/main/java/com/scality/osis/healthcheck/UtapiHealthIndicator.java +++ /dev/null @@ -1,22 +0,0 @@ -/** - *Copyright 2021 Scality, Inc. - *SPDX-License-Identifier: Apache License 2.0 - */ - -package com.scality.osis.healthcheck; - -import org.springframework.boot.actuate.health.Health; -import org.springframework.boot.actuate.health.HealthIndicator; -import org.springframework.stereotype.Component; - - -@Component("utapi") -public class UtapiHealthIndicator implements HealthIndicator { - - @Override - public Health health() { - // We want to make sure healthcheck is false even if it is set in application.properties - // This will be enabled and potentially refactored with S3C-8266 - return Health.down().build(); - } -}