This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch fix-camel-netty-ssl-configuration-3.20 in repository https://gitbox.apache.org/repos/asf/camel.git
commit d5d243c5bb3cff21d6312693d5320bac360329c7 Author: Nicolas Filotto <essob...@users.noreply.github.com> AuthorDate: Fri Sep 1 18:49:02 2023 +0200 camel-netty - Fix doc about SSL configuration --- components/camel-netty/src/main/docs/netty-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-netty/src/main/docs/netty-component.adoc b/components/camel-netty/src/main/docs/netty-component.adoc index aacaa9c99dc..dc23743fe22 100644 --- a/components/camel-netty/src/main/docs/netty-component.adoc +++ b/components/camel-netty/src/main/docs/netty-component.adoc @@ -236,7 +236,7 @@ SSLContextParameters scp = new SSLContextParameters(); scp.setKeyManagers(kmp); NettyComponent nettyComponent = getContext().getComponent("netty", NettyComponent.class); -nettyComponent.setSslContextParameters(scp); +nettyComponent.getConfiguration().setSslContextParameters(scp); ---- [[Netty-SpringDSLbasedconfigurationofendpoint]]