From c2a09975aadf6ea10e3a058345fb5821cdecf829 Mon Sep 17 00:00:00 2001 From: DinethH Date: Thu, 2 May 2024 13:48:36 +0530 Subject: [PATCH] changed path match type to Exact --- runtime/config-deployer-service/ballerina/APIClient.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/config-deployer-service/ballerina/APIClient.bal b/runtime/config-deployer-service/ballerina/APIClient.bal index 5c86fc3bc..9151f2119 100644 --- a/runtime/config-deployer-service/ballerina/APIClient.bal +++ b/runtime/config-deployer-service/ballerina/APIClient.bal @@ -1057,7 +1057,7 @@ public class APIClient { private isolated function retrieveGRPCRouteMatch(APKOperations apiOperation) returns model:GRPCRouteMatch { model:GRPCRouteMatch grpcRouteMatch = { method: { - 'type: "RegularExpression", + 'type: "Exact", 'service: apiOperation.target, method: apiOperation.verb }