From 48f4ed60a6f3333c8ef17ef25e46f122c958d21d Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 25 Dec 2025 08:39:45 -0800 Subject: [PATCH] =?UTF-8?q?fix(planting-service):=20=E4=BF=AE=E5=A4=8D=20i?= =?UTF-8?q?dentity-service=20API=20=E8=B0=83=E7=94=A8=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加 /api/v1 前缀以匹配 identity-service 的全局路由配置 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../src/infrastructure/external/identity-service.client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/planting-service/src/infrastructure/external/identity-service.client.ts b/backend/services/planting-service/src/infrastructure/external/identity-service.client.ts index 7a5f0992..a60deb3d 100644 --- a/backend/services/planting-service/src/infrastructure/external/identity-service.client.ts +++ b/backend/services/planting-service/src/infrastructure/external/identity-service.client.ts @@ -154,7 +154,7 @@ export class IdentityServiceClient { async () => { const response = await firstValueFrom( this.httpService.get( - `${this.baseUrl}/internal/users/${accountSequence}/detail`, + `${this.baseUrl}/api/v1/internal/users/${accountSequence}/detail`, ), ); return response.data;