From 8553b8eda6d8a27c7e514730e3f4b040b73dbbf1 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 14 Feb 2017 14:21:27 -0500 Subject: [PATCH] Ignore hipchat certificate verification --- awx/main/notifications/hipchat_backend.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/notifications/hipchat_backend.py b/awx/main/notifications/hipchat_backend.py index 586754bd92..b286439954 100644 --- a/awx/main/notifications/hipchat_backend.py +++ b/awx/main/notifications/hipchat_backend.py @@ -37,6 +37,7 @@ class HipChatBackend(TowerBaseEmailBackend): for rcp in m.recipients(): r = requests.post("{}/v2/room/{}/notification".format(self.api_url, rcp), params={"auth_token": self.token}, + verify=False, json={"color": self.color, "message": m.subject, "notify": self.notify,