From 1574089b95154738b048b0e27232a61e23944191 Mon Sep 17 00:00:00 2001 From: Tudor Date: Thu, 26 Mar 2026 10:01:09 +0000 Subject: [PATCH] fix(pipeline): update Airflow healthcheck to /api/v2/monitor/health Airflow 3 moved the health endpoint from /health to /api/v2/monitor/health. Co-Authored-By: Claude Opus 4.6 --- docker-compose.portainer.yml | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.portainer.yml b/docker-compose.portainer.yml index 9ee0a1d..bc5ebb3 100644 --- a/docker-compose.portainer.yml +++ b/docker-compose.portainer.yml @@ -213,7 +213,7 @@ services: - backend restart: unless-stopped healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8080/health"] + test: ["CMD", "curl", "-f", "http://localhost:8080/api/v2/monitor/health"] interval: 30s timeout: 10s retries: 5 diff --git a/docker-compose.yml b/docker-compose.yml index 76bf3f5..6b43448 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -125,7 +125,7 @@ services: - schoolcompare-network restart: unless-stopped healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8080/health"] + test: ["CMD", "curl", "-f", "http://localhost:8080/api/v2/monitor/health"] interval: 30s timeout: 10s retries: 5