diff options
author | Yun Huang <yun.huang@windriver.com> | 2018-03-09 10:11:30 +0800 |
---|---|---|
committer | Yun Huang <yun.huang@windriver.com> | 2018-03-09 10:11:30 +0800 |
commit | 8bddebb95d3f42eaf3da5523a2a07d3b2da5447a (patch) | |
tree | bee50043a2c47f9659f1c360b88fd02e3c97499f /share/newton_base/util.py | |
parent | b3a1192df1c3d87abf6fad172915877447290e91 (diff) |
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 <yun.huang@windriver.com>
Diffstat (limited to 'share/newton_base/util.py')
-rw-r--r-- | share/newton_base/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |