You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/09/01 16:49:09 UTC

[camel] 01/01: camel-netty - Fix doc about SSL configuration

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 <es...@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]]