Increase timeout to recover neutron agents

This patch increases the timeout tobiko uses to obtain the status
of the neutron agents during the execution of the sanity tests of
during the cloud health checks that are executed before and after
disruptions

Change-Id: I47150f0c44b98fa502f6ede5fdadcaa7fd353d11
This commit is contained in:
Eduardo Olivares 2023-03-01 12:59:14 +01:00
parent 88f925ff20
commit bb799e463a

View File

@ -46,7 +46,7 @@ def build_ovn_db_show_dict(ovn_db_show_str):
return ovn_master_db_dict
def test_neutron_agents_are_alive(timeout=300., interval=5.) \
def test_neutron_agents_are_alive(timeout=420., interval=5.) \
-> tobiko.Selection[neutron.NeutronAgentType]:
for attempt in tobiko.retry(timeout=timeout, interval=interval):
LOG.debug("Look for unhealthy Neutron agents...")