From 8eb7d93cbcc6662c4d502dd191b8d55a6b4f4955 Mon Sep 17 00:00:00 2001 From: zhurong Date: Sun, 21 Aug 2016 02:44:23 +0000 Subject: [PATCH] Revert "Fix config group for SSL in tempest test" Tempest did the revert of change config group for SSL in this commit:I91600d8fc49db670b0f78ffd0094575fbfa0ca63 So we should revert this commit too. This reverts commit ffe85fcafee35fa7e19b928aaf62b89de7ee18cd. Closes-Bug: #1615375 Change-Id: I6af46ba2adee65c586913cdb182530ac63fab6f3 --- 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 881973c7..fb64fa70 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.service_clients.disable_ssl_certificate_validation, - 'ca_certs': CONF.service_clients.ca_certificates_file, + CONF.identity.disable_ssl_certificate_validation, + 'ca_certs': CONF.identity.ca_certificates_file, 'trace_requests': CONF.debug.trace_requests }