commit | 3cd2e1aa7c15a10159b946554122cbdb348b41fa | [log] [tgz] |
---|---|---|
author | Jens Harbott <j.harbott@x-ion.de> | Thu Jul 02 10:51:38 2020 +0000 |
committer | Jens Harbott <j.harbott@x-ion.de> | Thu Jul 02 10:52:50 2020 +0000 |
tree | 58440ce57af4d2faa8bed8e4ed76d09d7ea8bead | |
parent | 722055abdcedbda88152453733631f0d93d79d4a [diff] |
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
diff --git a/neutron_tempest_plugin/neutron_dynamic_routing/api/test_bgp_speaker_extensions.py b/neutron_tempest_plugin/neutron_dynamic_routing/api/test_bgp_speaker_extensions.py index f0e576b..61bbcc3 100644 --- a/neutron_tempest_plugin/neutron_dynamic_routing/api/test_bgp_speaker_extensions.py +++ b/neutron_tempest_plugin/neutron_dynamic_routing/api/test_bgp_speaker_extensions.py
@@ -37,7 +37,7 @@ # 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
diff --git a/neutron_tempest_plugin/neutron_dynamic_routing/scenario/base.py b/neutron_tempest_plugin/neutron_dynamic_routing/scenario/base.py index de8677f..f752436 100644 --- a/neutron_tempest_plugin/neutron_dynamic_routing/scenario/base.py +++ b/neutron_tempest_plugin/neutron_dynamic_routing/scenario/base.py
@@ -54,7 +54,7 @@ # 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