From a67a28e1cb804f4fd0786a9a8f4d6b5fcfe8b557 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Mon, 19 May 2025 18:46:34 -0600 Subject: [PATCH] update messages --- .github/workflows/llmsecops-cicd.llm.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/llmsecops-cicd.llm.yml b/.github/workflows/llmsecops-cicd.llm.yml index 466f12294..2df0c72ce 100644 --- a/.github/workflows/llmsecops-cicd.llm.yml +++ b/.github/workflows/llmsecops-cicd.llm.yml @@ -66,7 +66,7 @@ jobs: while [ $attempt -le $max_attempts ]; do echo "Health check attempt $attempt of $max_attempts..." if curl -s -f -i http://localhost:9999/ > logs/health_check_$attempt.log 2>&1; then - echo "Health check succeeded!" + echo "Health check succeeded" break else echo "Health check failed, waiting 5 seconds..." @@ -88,11 +88,11 @@ jobs: -H "Content-Type: application/json" > logs/test_request.log 2>&1 if [ $? -ne 0 ]; then - echo "Test API request failed!" + echo "Test API request failed" cat logs/test_request.log exit 1 else - echo "Test API request succeeded!" + echo "Test API request succeeded" cat logs/test_request.log fi @@ -109,7 +109,7 @@ jobs: if ps -p $API_PID > /dev/null; then echo "API process is running" >> logs/system_monitor.log else - echo "API process is NOT running!" >> logs/system_monitor.log + echo "API process is NOT running" >> logs/system_monitor.log fi echo "-------------------" >> logs/system_monitor.log sleep 10