From e62edef444d3ea1d8050edba8a6c152929d7f06d Mon Sep 17 00:00:00 2001 From: urajan Date: Fri, 24 Apr 2020 15:18:29 -0600 Subject: [PATCH] Stripped query parameters from the path --- proxy-integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy-integration.js b/proxy-integration.js index cfbcf76..3bd70e6 100644 --- a/proxy-integration.js +++ b/proxy-integration.js @@ -17,7 +17,7 @@ class ProxyIntegration extends Integration { requestId: req.egContext.requestID }); - let requestPath = req.url; + let requestPath = req.params.length > 0 ? req.path :req.url ; if (settings.stripPath) { requestPath =