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
This commit is contained in:
Rodolfo Alonso Hernandez 2024-09-30 13:28:54 +00:00
parent b259c20115
commit a46b9ca6a3

View File

@ -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':