From d4a27fac84c7b115a5895e549de44c21ab4bcf49 Mon Sep 17 00:00:00 2001 From: Greg Schofield Date: Sun, 29 Oct 2023 08:57:05 -0400 Subject: [PATCH] Update run_smoke_tests.sh --- scripts/run_smoke_tests.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/run_smoke_tests.sh b/scripts/run_smoke_tests.sh index 91efc83..11bb120 100755 --- a/scripts/run_smoke_tests.sh +++ b/scripts/run_smoke_tests.sh @@ -46,7 +46,8 @@ if [ "$numGems" != "$numGemsBackup" ]; then exit 1 fi -metrics=$(curl -s localhost:2020/metrics | grep "gemfast") +metrics=$(curl -s http://localhost/metrics | grep "gemfast") if [[ $metrics == "" ]] ; then echo "Metrics endpoint is not working" -fi \ No newline at end of file + exit 1 +fi