From a1adbe8026b3a907d93f2a88c3cf3518b0c6b506 Mon Sep 17 00:00:00 2001 From: Alfredo Gutierrez Date: Tue, 27 Aug 2024 13:43:03 -0600 Subject: [PATCH] including smoke test verification as well. Signed-off-by: Alfredo Gutierrez --- server/src/test/resources/smoke-test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/src/test/resources/smoke-test.sh b/server/src/test/resources/smoke-test.sh index efad6d9c8..b91a1a7d8 100755 --- a/server/src/test/resources/smoke-test.sh +++ b/server/src/test/resources/smoke-test.sh @@ -80,10 +80,10 @@ if ! ./get-block.sh 1 > get-block.log 2>&1; then fi echo "get-block.sh executed successfully." -# 5. Call the endpoints /health/liveness and /health/readiness +# 5. Call the endpoints /health/livez and /health/readyz SERVER_URL="http://localhost:8080" -LIVENESS_ENDPOINT="/healthz/liveness" -READINESS_ENDPOINT="/healthz/readiness" +LIVENESS_ENDPOINT="/healthz/livez" +READINESS_ENDPOINT="/healthz/readyz" if ! curl -f $SERVER_URL$LIVENESS_ENDPOINT; then echo "$LIVENESS_ENDPOINT failed."