This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-3.7.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 6e2a798798369a8bbcef9ffef9b307900bdfe07c Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Mar 8 21:49:12 2021 +0100 CAMEL-16315 - Camel-Netty: Support Hostname verification even though we are on Netty 4.1.x --- .../main/java/org/apache/camel/component/netty/NettyConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyConfiguration.java b/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyConfiguration.java index 805e1da..37f4810 100644 --- a/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyConfiguration.java +++ b/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyConfiguration.java @@ -67,7 +67,7 @@ public class NettyConfiguration extends NettyServerBootstrapConfiguration implem private List<ChannelHandler> encoders = new ArrayList<>(); @UriParam(label = "codec") private List<ChannelHandler> decoders = new ArrayList<>(); - @UriParam(label = "common", defaultValue = "false") + @UriParam(label = "common, security", defaultValue = "false") private boolean hostnameVerification; @UriParam private boolean disconnect;