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 8866544 commit 8f64cd3Copy full SHA for 8f64cd3
1 file changed
scripts/e2e/mcp-channels-docker.sh
@@ -65,6 +65,19 @@ docker run --rm \
65
tail -n 120 /tmp/mcp-channels-gateway.log 2>/dev/null || true
66
exit 1
67
fi
68
+ acpx_ready=0
69
+ for _ in \$(seq 1 960); do
70
+ if grep -q '\[plugins\] embedded acpx runtime backend ready' /tmp/mcp-channels-gateway.log 2>/dev/null; then
71
+ acpx_ready=1
72
+ break
73
+ fi
74
+ sleep 0.25
75
+ done
76
+ if [ \"\$acpx_ready\" -ne 1 ]; then
77
+ echo \"Embedded ACPX runtime did not become ready\"
78
+ tail -n 120 /tmp/mcp-channels-gateway.log 2>/dev/null || true
79
+ exit 1
80
81
node --import tsx scripts/e2e/mcp-channels-docker-client.ts
82
" >"$CLIENT_LOG" 2>&1
83
status=${PIPESTATUS[0]}
0 commit comments