aboutsummaryrefslogtreecommitdiffstats
path: root/sources
diff options
context:
space:
mode:
authorPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2021-07-06 10:38:25 +0200
committerPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2021-07-06 16:05:26 +0200
commit387f5d6f1aba8751b28e94d84a48253532a2211b (patch)
treea0047b7d4df10acb1cceabf7cd5a0a3c1abda74a /sources
parent3e0f5cbb9983cf5d7e5e1f591d87b449d44099f3 (diff)
Change logback version to 1.3.0-alpha4
- Change logback version in order to remove checker-framework dependency. - Change healthcheck script to sh (bash is unavailable in container) - Remove dl.bintray.com repository Issue-ID: DCAEGEN2-2851 Signed-off-by: Piotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com> Change-Id: Id947029c719ac3b6fc3456dbd1d36e83964d8729
Diffstat (limited to 'sources')
-rwxr-xr-xsources/hv-collector-main/src/main/docker/healthcheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/hv-collector-main/src/main/docker/healthcheck.sh b/sources/hv-collector-main/src/main/docker/healthcheck.sh
index db62eece..b2f54e56 100755
--- a/sources/hv-collector-main/src/main/docker/healthcheck.sh
+++ b/sources/hv-collector-main/src/main/docker/healthcheck.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/usr/bin/env sh
curl -f http://localhost:${VESHV_HEALTH_CHECK_API_PORT:-6060}/health/ready || exit 1
nc -vz localhost ${VESHV_LISTEN_PORT:-6061} || exit 2