You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2024/02/01 23:36:35 UTC

(superset) 01/01: docs(presto): add Presto SSL connection details

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

rusackas pushed a commit to branch presto-ssl-deets
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 2eea35ae39515e55c21ec76728d24813cc324de0
Author: Evan Rusackas <ev...@rusackas.com>
AuthorDate: Thu Feb 1 16:36:26 2024 -0700

    docs(presto): add Presto SSL connection details
---
 docs/docs/databases/presto.mdx | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/docs/docs/databases/presto.mdx b/docs/docs/databases/presto.mdx
index fcded5fc7e..3377881f73 100644
--- a/docs/docs/databases/presto.mdx
+++ b/docs/docs/databases/presto.mdx
@@ -35,3 +35,14 @@ datasource. If you’re using an older version of Presto, you can configure it i
     "version": "0.123"
 }
 ```
+
+SSL Secure extra add json config to extra connection information.
+
+```
+   {
+     "connect_args":
+    {"protocol": "https",
+     "requests_kwargs":{"verify":false}
+  }
+}
+```