This is an automated email from the ASF dual-hosted git repository.
rusackas 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 92b52a7fa0 docs(presto): add Presto SSL connection details (#26986)
92b52a7fa0 is described below
commit 92b52a7fa0d20e93095fffffcec79e113aac5630
Author: Evan Rusackas <[email protected]>
AuthorDate: Fri Feb 2 11:38:17 2024 -0700
docs(presto): add Presto SSL connection details (#26986)
---
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}
+ }
+}
+```