From 5bf460b71b0aba2b5f71b71b9f7684ad2231af33 Mon Sep 17 00:00:00 2001 From: jverdicc Date: Sun, 1 Mar 2026 21:23:30 -0500 Subject: [PATCH] fix: correct preflight e2e health check port from 8080 to 8787 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c0056a..c9a5e3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -149,7 +149,7 @@ jobs: ../EvidenceOS/target/release/evidenceos-daemon --preflight-http-listen 127.0.0.1:8787 --data-dir artifacts/preflight-e2e/data > artifacts/preflight-e2e/daemon.log 2>&1 & echo $! > artifacts/preflight-e2e/daemon.pid for _ in $(seq 1 60); do - code=$(curl -s -o artifacts/preflight-e2e/preflight.json -w "%{http_code}" http://127.0.0.1:8080/preflight || true) + code=$(curl -s -o artifacts/preflight-e2e/preflight.json -w "%{http_code}" ${EVIDENCEOS_PREFLIGHT_URL}/preflight || true) if [ "$code" = "200" ]; then exit 0 fi