Skip to content

Commit 6e45031

Browse files
committed
fix: use /health not /healthz for controller health check
The Iris controller exposes /health (not /healthz). The wrong endpoint caused the health poll to loop for 5 minutes then fail.
1 parent 42c95f4 commit 6e45031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/iris-coreweave-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
echo "port-forward process died unexpectedly"
128128
exit 1
129129
fi
130-
if curl -sf "$IRIS_CONTROLLER_URL/healthz" > /dev/null 2>&1; then
130+
if curl -sf "$IRIS_CONTROLLER_URL/health" > /dev/null 2>&1; then
131131
HEALTHY=true
132132
break
133133
fi

0 commit comments

Comments
 (0)