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.
This commit is contained in:
@@ -49,7 +49,10 @@ class _ZendeskApi(object):
|
||||
settings.ZENDESK_USER,
|
||||
settings.ZENDESK_API_KEY,
|
||||
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):
|
||||
|
||||
Reference in New Issue
Block a user