From c60d3b2f26bbcfd35ae0a6433569877063a40da6 Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 15 Jan 2026 05:26:11 -0800 Subject: [PATCH] fix(trading-service): correct global prefix to match Kong routing Change prefix from 'api/v2' to 'api/v2/trading' to match Kong gateway configuration with strip_path: false. Co-Authored-By: Claude Opus 4.5 --- backend/services/trading-service/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/trading-service/src/main.ts b/backend/services/trading-service/src/main.ts index 8bafce22..007238d7 100644 --- a/backend/services/trading-service/src/main.ts +++ b/backend/services/trading-service/src/main.ts @@ -20,7 +20,7 @@ async function bootstrap() { credentials: true, }); - app.setGlobalPrefix('api/v2'); + app.setGlobalPrefix('api/v2/trading'); const config = new DocumentBuilder() .setTitle('Trading Service API')