Merge "Allow int tests to run in SSL environment"

This commit is contained in:
Jenkins 2015-07-16 16:17:11 +00:00 committed by Gerrit Code Review
commit 1175573aa1

View File

@ -167,7 +167,8 @@ def create_nova_client(user, service_type=None):
service_type = test_config.nova_client['nova_service_type']
openstack = Client(user.auth_user, user.auth_key,
user.tenant, test_config.nova_client['auth_url'],
service_type=service_type, no_cache=True)
service_type=service_type, no_cache=True,
cacert=test_config.values.get('cacert', None))
openstack.authenticate()
return TestClient(openstack)