Skip to content
Snippets Groups Projects
Commit 040cbcea authored by arthur.yueh's avatar arthur.yueh
Browse files

add verifySSL on requests.post too

parent fe3c3191
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ def send_grafana_get(url):
return r
def send_grafana_post(url, json_payload):
r = requests.post(url, headers=http_post_headers, data=json_payload)
r = requests.post(url, headers=http_post_headers, data=json_payload, verify=verifySSL)
if debug:
log_response(r)
return r
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment