fix: remove blockchain RPC (port 8006) from API endpoint test service checks
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Successful in 5s
Node Failover Simulation / failover-test (push) Has been cancelled
API Endpoint Tests / test-api-endpoints (push) Failing after 12m27s

This commit is contained in:
aitbc
2026-05-06 08:01:08 +02:00
parent 385ff0878c
commit 0d306db56b

View File

@@ -116,7 +116,8 @@ jobs:
echo "Using service host: $service_host"
echo "services_available=true" > /var/lib/aitbc-workspaces/api-tests/status
for port in 9001 8001 8003 8006; do
# Check only the services needed for API endpoint tests (exclude blockchain RPC)
for port in 9001 8001 8003; do
port_ready=0
for i in $(seq 1 15); do
code=$(curl -so /dev/null -w '%{http_code}' "http://$service_host:$port/health" 2>/dev/null) || code=0