This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 9fd8fc30dbd CAMEL-21876 - Undertow Header Filter Strategy: Considering also the in filter (#17476) 9fd8fc30dbd is described below commit 9fd8fc30dbd98511a1faa0cbcf39ef5aeec88a64 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Mar 17 15:18:16 2025 +0100 CAMEL-21876 - Undertow Header Filter Strategy: Considering also the in filter (#17476) Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../apache/camel/component/undertow/UndertowHeaderFilterStrategy.java | 1 + 1 file changed, 1 insertion(+) diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowHeaderFilterStrategy.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowHeaderFilterStrategy.java index 5805cb626b3..95307d45592 100644 --- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowHeaderFilterStrategy.java +++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowHeaderFilterStrategy.java @@ -33,5 +33,6 @@ public class UndertowHeaderFilterStrategy extends DefaultHeaderFilterStrategy { // filter headers begin with "Camel" or "org.apache.camel" // must ignore case for Http based transports setOutFilterStartsWith(CAMEL_FILTER_STARTS_WITH); + setInFilterStartsWith(CAMEL_FILTER_STARTS_WITH); } }