This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit f3edbdc1915c1c4d361be08fe22679eb81a1a791 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Jan 10 15:06:07 2023 +0100 CAMEL-18773 - Camel-Elasticsearch: CertificatePath should be readable through ResourceHelper Signed-off-by: Andrea Cosentino <[email protected]> --- .../java/org/apache/camel/component/es/ElasticsearchConfiguration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-elasticsearch/src/main/java/org/apache/camel/component/es/ElasticsearchConfiguration.java b/components/camel-elasticsearch/src/main/java/org/apache/camel/component/es/ElasticsearchConfiguration.java index 34b3676ef86..5058bf75b0c 100644 --- a/components/camel-elasticsearch/src/main/java/org/apache/camel/component/es/ElasticsearchConfiguration.java +++ b/components/camel-elasticsearch/src/main/java/org/apache/camel/component/es/ElasticsearchConfiguration.java @@ -213,7 +213,8 @@ public class ElasticsearchConfiguration { } /** - * The path of the self-signed certificate to use to access to Elasticsearch. + * The certificate that can be used to access the ES Cluster. + * It can be loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems. */ public String getCertificatePath() { return certificatePath;
