Skip to content

Commit dd52a51

Browse files
jaygel179darinhoward
authored andcommitted
Python API - Ignore SLL Error from HTTP transport (#10)
1 parent 13ea9a8 commit dd52a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackify/transport/agent/agent_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _post(self, url, payload):
1515
'Content-Type': 'application/x-protobuf',
1616
}
1717
try:
18-
return requests.post(url, payload, headers=headers)
18+
return requests.post(url, payload, headers=headers, verify=False)
1919
except Exception as e:
2020
internal_logger.debug('HTTP transport exception: {}.'.format(e))
2121
raise

0 commit comments

Comments
 (0)