From 31c3c24a1244158a12bc574a67d93b7ffeb9a8a9 Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 10 Dec 2025 12:48:26 -0800 Subject: [PATCH] fix(reward-service): correct healthcheck endpoint path to /api/v1/health --- backend/services/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/docker-compose.yml b/backend/services/docker-compose.yml index 14febd26..2d3fa761 100644 --- a/backend/services/docker-compose.yml +++ b/backend/services/docker-compose.yml @@ -319,7 +319,7 @@ services: kafka: condition: service_started healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:3005/health"] + test: ["CMD", "curl", "-f", "http://localhost:3005/api/v1/health"] interval: 30s timeout: 3s retries: 3