diff options
author | rexlee8776 <limingjiang@huawei.com> | 2017-03-30 10:37:02 +0800 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2017-03-30 10:37:02 +0800 |
commit | aa477334a3cb2e49c4343f66bff44c89d7edcf24 (patch) | |
tree | d4da7f6c346430ba5605c4230df5ae2c5c9fc48d | |
parent | ab7cd795f6d45bf8bedbe8903cae39bd447d3c19 (diff) |
Bugfix: cacert should suppot insecure mode if needed
currently, we use env variable "OS_CACERT" to specify the location of
cert file. but if there's no cacert and use for personal verification,
it's better to also support insecure mode by set OS_CACERT=False
JIRA: YARDSTICK-616
Change-Id: I73b0860863bf6386f9114328c52594ef87e02fa3
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
-rw-r--r-- | yardstick/common/openstack_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yardstick/common/openstack_utils.py b/yardstick/common/openstack_utils.py index 2df8fa565..788de0de4 100644 --- a/yardstick/common/openstack_utils.py +++ b/yardstick/common/openstack_utils.py @@ -79,6 +79,7 @@ def get_session(): except KeyError: return session.Session(auth=auth) else: + cacert = False if cacert.lower() == "false" else cacert return session.Session(auth=auth, verify=cacert) |