Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add verify option to json datasource runner to allow query developers…
… the option of skipping certificate verification
  • Loading branch information
Kevin Chiang committed Oct 15, 2020
commit 59104c48fd73161b3bcb7b2ee839477fbb3cc2bd
2 changes: 1 addition & 1 deletion redash/query_runner/json_ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def run_query(self, query, user):
raise Exception("Can't query private addresses.")

method = query.get("method", "get")
request_options = project(query, ("params", "headers", "data", "auth", "json"))
request_options = project(query, ("params", "headers", "data", "auth", "json", "verify"))

fields = query.get("fields")
path = query.get("path")
Expand Down