From 3d3ad69e367456520666d8ca32e67a5ed03d24a4 Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Fri, 19 Aug 2016 11:09:43 +0200 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 in aodh project to use new configuration group. Change-Id: I10fdd57d0d3252f414a3c3c3129a2139cc8dcf1b --- aodh/tests/tempest/service/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aodh/tests/tempest/service/client.py b/aodh/tests/tempest/service/client.py index 236d0efba..40d2e5854 100644 --- a/aodh/tests/tempest/service/client.py +++ b/aodh/tests/tempest/service/client.py @@ -106,8 +106,8 @@ class Manager(manager.Manager): 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 }