This is an automated email from the ASF dual-hosted git repository.
acosentino 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 79af7c41746 CAMEL-21876 - Undertow Header Filter Strategy: Considering
also the in filter (#17477)
79af7c41746 is described below
commit 79af7c4174653f502c4c5d9771cd91d90ed5831b
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Mar 17 15:06:09 2025 +0100
CAMEL-21876 - Undertow Header Filter Strategy: Considering also the in
filter (#17477)
Signed-off-by: Andrea Cosentino <[email protected]>
---
.../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);
}
}