Skip to content

Commit 814e9e7

Browse files
committed
Update container readiness check to exclude MCP services
1 parent ac34e17 commit 814e9e7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test-mcp-server.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ jobs:
4949
- name: Verify container readiness
5050
run: |
5151
docker ps
52-
for container in api mcp-server mcp-proxy; do
52+
# Only check for API and qdrant since MCP services are commented out
53+
for container in api qdrant; do
5354
if ! docker ps | grep -q "$container"; then
5455
echo "ERROR: $container is not running!"
55-
docker compose logs --tail=100 "$container"
56+
docker compose logs --tail=100 "$container" || echo "Could not get logs for $container"
5657
exit 1
5758
fi
5859
done

0 commit comments

Comments
 (0)