This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 0ba64dab6df CAMEL-22333 netty additional bootstrap channel options can
be set on producer endpoints
0ba64dab6df is described below
commit 0ba64dab6dff9adec2f90d2d046db419b47445d5
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Aug 16 13:06:33 2025 +0200
CAMEL-22333 netty additional bootstrap channel options can be set on
producer endpoints
---
.../http/NettyHttpTwoRoutesValidateBootstrapConfigurationTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpTwoRoutesValidateBootstrapConfigurationTest.java
b/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpTwoRoutesValidateBootstrapConfigurationTest.java
index 52a47cda2ae..776ac025141 100644
---
a/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpTwoRoutesValidateBootstrapConfigurationTest.java
+++
b/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpTwoRoutesValidateBootstrapConfigurationTest.java
@@ -34,12 +34,12 @@ public class
NettyHttpTwoRoutesValidateBootstrapConfigurationTest extends BaseNe
context.addRoutes(new RouteBuilder() {
@Override
public void configure() {
-
from("netty-http:http://0.0.0.0:{{port}}/foo?option.child.keepAlive=false")
+ from("netty-http:http://0.0.0.0:{{port}}/foo?reconnect=false")
.to("mock:foo")
.transform().constant("Bye World");
// we cannot have a 2nd route on same port with different
option that the 1st route
-
from("netty-http:http://0.0.0.0:{{port}}/bar?option.child.keepAlive=true")
+ from("netty-http:http://0.0.0.0:{{port}}/bar?reconnect=true")
.to("mock:bar")
.transform().constant("Bye Camel");
}