Commit 0e525d69 by Greg Price

Disable SSL cert validation for Zendesk API

They are currently using a CA that is not installed on our servers. Since it
isn't a top-tier CA and we aren't submitting anything particularly sensitive
anyway, we don't have to feel too bad about this.
parent 0c6c7868
...@@ -49,7 +49,10 @@ class _ZendeskApi(object): ...@@ -49,7 +49,10 @@ class _ZendeskApi(object):
settings.ZENDESK_USER, settings.ZENDESK_USER,
settings.ZENDESK_API_KEY, settings.ZENDESK_API_KEY,
use_api_token=True, use_api_token=True,
api_version=2 api_version=2,
# As of 2012-05-08, Zendesk is using a CA that is not
# installed on our servers
client_args={"disable_ssl_certificate_validation": True}
) )
def create_ticket(self, ticket): def create_ticket(self, ticket):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment