From 0d614939e9a1b0bafa37e22a50665d1b364ccd28 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 04:52:38 +0000 Subject: [PATCH] fix: remove PathRemovePrefix from identity gateway route The Identity service controller uses [Route("api/[controller]")] which expects the full /api/identity prefix. Removing the PathRemovePrefix transform so the gateway forwards the original path as-is. --- src/ApiGateway/appsettings.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ApiGateway/appsettings.json b/src/ApiGateway/appsettings.json index 74c7ae9..faa610f 100644 --- a/src/ApiGateway/appsettings.json +++ b/src/ApiGateway/appsettings.json @@ -10,8 +10,7 @@ "Routes": { "identity-route": { "ClusterId": "identity-cluster", - "Match": { "Path": "/api/identity/{**catch-all}" }, - "Transforms": [{ "PathRemovePrefix": "/api/identity" }] + "Match": { "Path": "/api/identity/{**catch-all}" } }, "customer-route": { "ClusterId": "customer-cluster",