Apply rollout wait to remaining tests

This change applies rollout wait introduced in patch [1] to any other
test that can benefit from such extra stability.

[1] 945106: Wait for config rollout to complete in test_api_server
https://review.opendev.org/c/x/whitebox-neutron-tempest-plugin/+/945106

Change-Id: I2aaa0170f702c278be1d193dca30450c46f1303f
This commit is contained in:
Maor Blaustein 2025-03-30 16:44:10 +03:00
parent 780cbfafc8
commit 2ad8456264
2 changed files with 4 additions and 2 deletions

View File

@ -57,7 +57,8 @@ class OvnFdbAgingTest(wb_base.BaseTempestTestCaseOvn):
FDB_AGE_THRESHOLD)]
self.set_service_setting(file=wb_utils.get_ml2_conf_file(),
config_list=config_list,
cfg_change=False)
cfg_change=False,
wait_res='deploy/neutron')
# 2) restart neutron api on all controllers simultaneously
if not WB_CONF.openstack_type == 'podified':

View File

@ -483,7 +483,8 @@ class BaseSecGroupLoggingTest(
wb_base.ConfigOption('network_log', 'burst_limit', burst_val),
wb_base.ConfigOption('network_log', 'rate_limit', rate_val)]
self.set_service_setting(file=self.ML2_CONF_FILE,
config_list=config_list)
config_list=config_list,
wait_res='deploy/neutron')
# 5) restart neutron api on all controllers simultaneously
if not WB_CONF.openstack_type == 'podified':
service_ptn = utils.get_neutron_api_service_name()