From 6ec79a667217592ceb32337167a407a320330039 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 13 Jan 2026 22:26:32 -0800 Subject: [PATCH] fix(deploy): correct CDC sync API URL path Change from /health/cdc-sync to /api/v2/health/cdc-sync Co-Authored-By: Claude Opus 4.5 --- backend/services/deploy-mining.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/deploy-mining.sh b/backend/services/deploy-mining.sh index 01622356..2b2e137e 100755 --- a/backend/services/deploy-mining.sh +++ b/backend/services/deploy-mining.sh @@ -1110,7 +1110,7 @@ full_reset() { local max_wait=600 # 最多等待 10 分钟 local wait_count=0 local sync_completed=false - local cdc_sync_url="http://localhost:3020/health/cdc-sync" + local cdc_sync_url="http://localhost:3020/api/v2/health/cdc-sync" while [ "$wait_count" -lt "$max_wait" ] && [ "$sync_completed" = false ]; do # 调用 API 检查同步状态