This is an automated email from the ASF dual-hosted git repository.

srini pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 415b50cc4c Update elasticsearch.mdx (#20695)
415b50cc4c is described below

commit 415b50cc4cb778525fa1bd2bf68b904bdc7734c8
Author: Lionel GUILLAUD <[email protected]>
AuthorDate: Wed Jul 13 22:07:04 2022 +0200

    Update elasticsearch.mdx (#20695)
    
    Configuration to get rid of "urllib3.exceptions.SSLError: [SSL: 
CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate 
in certificate chain (_ssl.c:1131)"
---
 docs/docs/databases/elasticsearch.mdx | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/docs/docs/databases/elasticsearch.mdx 
b/docs/docs/databases/elasticsearch.mdx
index 70b7f8f685..6fb922815c 100644
--- a/docs/docs/databases/elasticsearch.mdx
+++ b/docs/docs/databases/elasticsearch.mdx
@@ -66,3 +66,11 @@ you need to use the `CAST` function,but this function does 
not support our `time
 After elasticsearch7.8, you can use the `DATETIME_PARSE` function to solve 
this problem.
 The DATETIME_PARSE function is to support our `time_zone` setting, and here 
you need to fill in your elasticsearch version number in the Other > VERSION 
setting.
 the superset will use the `DATETIME_PARSE` function for conversion.
+
+**Disable SSL Verification**
+
+To disable SSL verification, add the following to the **SQLALCHEMY URI** field:
+
+```
+elasticsearch+https://{user}:{password}@{host}:9200/?verify_certs=False
+```

Reply via email to