From 4ce38eebf6880c5e48a8f481e761703623b73275 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:56:07 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20add=20PathPrefix=20transform=20to=20map?= =?UTF-8?q?=20/api/customers=20=E2=86=92=20/api/customer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ApiGateway/appsettings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ApiGateway/appsettings.json b/src/ApiGateway/appsettings.json index 74c7ae9..8d15d93 100644 --- a/src/ApiGateway/appsettings.json +++ b/src/ApiGateway/appsettings.json @@ -16,7 +16,10 @@ "customer-route": { "ClusterId": "customer-cluster", "Match": { "Path": "/api/customers/{**catch-all}" }, - "Transforms": [{ "PathRemovePrefix": "/api/customers" }] + "Transforms": [ + { "PathRemovePrefix": "/api/customers" }, + { "PathPrefix": "/api/customer" } + ] }, "order-route": { "ClusterId": "order-cluster",