Merge "Fix cert handling for dynamic routing tests"

This commit is contained in:
Zuul 2020-07-08 12:57:15 +00:00 committed by Gerrit Code Review
commit 7cc1a9ded5
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ def _setup_client_args(auth_provider):
# The disable_ssl appears in identity
disable_ssl_certificate_validation = (
CONF.identity.disable_ssl_certificate_validation)
ca_certs = None
ca_certs = CONF.identity.ca_certificates_file
# Trace in debug section
trace_requests = CONF.debug.trace_requests

View File

@ -54,7 +54,7 @@ def _setup_client_args(auth_provider):
# The disable_ssl appears in identity
disable_ssl_certificate_validation = (
CONF.identity.disable_ssl_certificate_validation)
ca_certs = None
ca_certs = CONF.identity.ca_certificates_file
# Trace in debug section
trace_requests = CONF.debug.trace_requests