From bf2fdac2d0f69567a8add81d1b260da9310f6026 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Sun, 23 Nov 2025 01:56:17 +0100 Subject: [PATCH] ci: Fix health endpoint --- .github/workflows/rag-evaluation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rag-evaluation.yml b/.github/workflows/rag-evaluation.yml index ad03d06..148321d 100644 --- a/.github/workflows/rag-evaluation.yml +++ b/.github/workflows/rag-evaluation.yml @@ -79,7 +79,7 @@ jobs: echo "Waiting for MCP server..." max_attempts=30 attempt=0 - until curl -o /dev/null -s -w "%{http_code}\n" http://localhost:8000/health | grep -q "200"; do + until curl -o /dev/null -s -w "%{http_code}\n" http://localhost:8000/health/live | grep -q "200"; do attempt=$((attempt + 1)) if [ $attempt -ge $max_attempts ]; then echo "MCP server did not become ready in time."