From 8bddebb95d3f42eaf3da5523a2a07d3b2da5447a Mon Sep 17 00:00:00 2001 From: Yun Huang Date: Fri, 9 Mar 2018 10:11:30 +0800 Subject: Workaround secure connection for Openstack Disable cert of secured endpoint of OpenStack by default.Will fix this workaround later when ESR could onboard the cert into AAI Change-Id: Ic0813cd5d2afb867c20c1a5b5a13fd5b1ee5d71b Issue-ID: MULTICLOUD-161 Signed-off-by: Yun Huang --- share/newton_base/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share/newton_base/util.py') diff --git a/share/newton_base/util.py b/share/newton_base/util.py index c708e850..36c47620 100644 --- a/share/newton_base/util.py +++ b/share/newton_base/util.py @@ -90,7 +90,7 @@ class VimDriverUtils(object): if auth_state: auth.set_auth_state(auth_state) - return session.Session(auth=auth) + return session.Session(auth=auth, verify=False) @staticmethod def get_auth_state(session_obj): -- cgit 1.2.3-korg