Fix cert handling for dynamic routing tests

Instead of ignoring ca_certs, use the same configuration as the
remainder of the tests.

Change-Id: Ic032924cf90ba94f226c223053568f0708749531
This commit is contained in:
Jens Harbott 2020-07-02 10:51:38 +00:00
parent 722055abdc
commit 3cd2e1aa7c
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