From ffe85fcafee35fa7e19b928aaf62b89de7ee18cd Mon Sep 17 00:00:00 2001 From: zhurong Date: Fri, 19 Aug 2016 22:12:33 +0800 Subject: [PATCH] Fix config group for SSL in tempest test Review https://review.openstack.org/#/c/349749 has moved parameters disable_ssl_certificate_validation and ca_certificates_file from identity to service_clients group. This patch modifies tempest tests to use new configuration group. Change-Id: I7f188e3313f8e83dd6271f8cdb60739d2ae2d371 --- murano_tempest_tests/clients.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/murano_tempest_tests/clients.py b/murano_tempest_tests/clients.py index fb64fa70..881973c7 100644 --- a/murano_tempest_tests/clients.py +++ b/murano_tempest_tests/clients.py @@ -51,8 +51,8 @@ class AltManager(Manager): def get_auth_provider(credentials, scope='project'): default_params = { 'disable_ssl_certificate_validation': - CONF.identity.disable_ssl_certificate_validation, - 'ca_certs': CONF.identity.ca_certificates_file, + CONF.service_clients.disable_ssl_certificate_validation, + 'ca_certs': CONF.service_clients.ca_certificates_file, 'trace_requests': CONF.debug.trace_requests }