From a46b9ca6a3dc65d61ef3f64ec1e24e1ab4184929 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Mon, 30 Sep 2024 13:28:54 +0000 Subject: [PATCH] Do no expect a configuration change in ``OvnFdbAgingTest`` The configuration parameters ``localnet_learn_fdb`` and ``fdb_age_threshold`` can be set by other tests (or other job executions, depending on the CI). In that case it is not needed to wait for the pod replacement (in podified environments). Related-Bug: #OSPRH-10452 Related-Bug: #OSPRH-893 Change-Id: I76d16c40c11b7255051a1154d9a7050d7add27f6 --- .../tests/scenario/test_ovn_fdb.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/whitebox_neutron_tempest_plugin/tests/scenario/test_ovn_fdb.py b/whitebox_neutron_tempest_plugin/tests/scenario/test_ovn_fdb.py index 0ede642..d97be7b 100644 --- a/whitebox_neutron_tempest_plugin/tests/scenario/test_ovn_fdb.py +++ b/whitebox_neutron_tempest_plugin/tests/scenario/test_ovn_fdb.py @@ -54,11 +54,13 @@ class OvnFdbAgingTest(wb_base.BaseTempestTestCaseOvn): self.set_service_setting(file=wb_utils.get_ml2_conf_file(), section='ovn', param='localnet_learn_fdb', - value='true') + value='true', + cfg_change=False) self.set_service_setting(file=wb_utils.get_ml2_conf_file(), section='ovn', param='fdb_age_threshold', - value=FDB_AGE_THRESHOLD) + value=FDB_AGE_THRESHOLD, + cfg_change=False) # 2) restart neutron api on all controllers simultaneously if not WB_CONF.openstack_type == 'podified':