From 10938612cc9f518e254f8756581548eeb52913b4 Mon Sep 17 00:00:00 2001 From: Daan Hoogland Date: Tue, 8 Oct 2013 17:35:46 +0200 Subject: [PATCH] [CLOUDSTACK-4832] no cert verification on https --- tools/marvin/marvin/cloudstackConnection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py index 8129396813a..c5a4c67fa5a 100644 --- a/tools/marvin/marvin/cloudstackConnection.py +++ b/tools/marvin/marvin/cloudstackConnection.py @@ -144,9 +144,9 @@ class cloudConnection(object): try: if method == 'POST': - response = requests.post(self.baseurl, params=payload) + response = requests.post(self.baseurl, params=payload, verify=False) else: - response = requests.get(self.baseurl, params=payload) + response = requests.get(self.baseurl, params=payload, verify=False) except ConnectionError, c: self.logging.debug("Connection refused. Reason: %s : %s" % (self.baseurl, c))