Disabled ssl warnings while runing tempest tests

While running tempest tests over https, warnings
are shown for unverified HTTPS request beacause
by default urllib3 don't verify ssl certificates.
So now, certification validation warnings have been
disabled.

Change-Id: I0e99af8364e262baa37a56b0a8846abde3a8d2b0
Closes-bug: #1570451
This commit is contained in:
hardik 2016-04-15 21:59:42 +05:30
parent d3ef00a122
commit 49d04cf45b
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ class MistralClientBase(rest_client.RestClient):
super(MistralClientBase, self).__init__(
auth_provider=auth_provider,
service=service_type,
region=CONF.identity.region
region=CONF.identity.region,
disable_ssl_certificate_validation=True
)
if service_type not in ('workflow', 'workflowv2'):