We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac34e17 commit 814e9e7Copy full SHA for 814e9e7
.github/workflows/test-mcp-server.yml
@@ -49,10 +49,11 @@ jobs:
49
- name: Verify container readiness
50
run: |
51
docker ps
52
- for container in api mcp-server mcp-proxy; do
+ # Only check for API and qdrant since MCP services are commented out
53
+ for container in api qdrant; do
54
if ! docker ps | grep -q "$container"; then
55
echo "ERROR: $container is not running!"
- docker compose logs --tail=100 "$container"
56
+ docker compose logs --tail=100 "$container" || echo "Could not get logs for $container"
57
exit 1
58
fi
59
done
0 commit comments