Skip to content

Commit

Permalink
Increase number of retires for wait_for_traefik
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Liam Young committed Oct 4, 2023
1 parent 6466caa commit 19ab52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zaza/openstack/charm_tests/tempest/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def wait_for_dead_units(self, application_name, dead_count):
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(
Expand Down

0 comments on commit 19ab52b

Please sign in to comment.