Increase number of retires for wait_for_traefik

Recent test runs have shown that the current number of retries is
not enough and traefik has still not updated its config. This PR
increases the number of retries in the hope that it will be
enough.
This commit is contained in:
Liam Young
2023-10-04 14:58:02 +00:00
parent 6466caab9d
commit 19ab52b767
+1 -1
View File
@@ -186,7 +186,7 @@ class TempestTestScaleK8SBase(TempestTestBase):
assert len(dead_units) == dead_count
@tenacity.retry(wait=tenacity.wait_exponential(multiplier=1, max=60),
reraise=True, stop=tenacity.stop_after_attempt(8))
reraise=True, stop=tenacity.stop_after_attempt(20))
def wait_for_traefik(self, application_name):
"""Wait for traefk to finish processing lb changes."""
logging.warning(