This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-4.10.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.10.x by this push:
new 888b2ae2d9f CAMEL-22116: Make it possible for SB to provide special
logic in getRawPath
888b2ae2d9f is described below
commit 888b2ae2d9f7505efb43fff0c0b46d51961e144b
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat May 31 15:40:37 2025 +0200
CAMEL-22116: Make it possible for SB to provide special logic in getRawPath
---
.../src/main/java/org/apache/camel/http/common/DefaultHttpBinding.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-http-common/src/main/java/org/apache/camel/http/common/DefaultHttpBinding.java
b/components/camel-http-common/src/main/java/org/apache/camel/http/common/DefaultHttpBinding.java
index 19e7ce2b0ab..22e8d16e865 100644
---
a/components/camel-http-common/src/main/java/org/apache/camel/http/common/DefaultHttpBinding.java
+++
b/components/camel-http-common/src/main/java/org/apache/camel/http/common/DefaultHttpBinding.java
@@ -304,7 +304,7 @@ public class DefaultHttpBinding implements HttpBinding {
}
}
- private String getRawPath(HttpServletRequest request) {
+ protected String getRawPath(HttpServletRequest request) {
String uri = request.getRequestURI();
/**
* In async case, it seems that request.getContextPath() can return
null