Skip to content

Commit

Permalink
Merge pull request #1147 from gnuoy/increase-traefik-retries
Browse files Browse the repository at this point in the history
Increase number of retires for wait_for_traefik
  • Loading branch information
gboutry authored Oct 4, 2023
2 parents 6466caa + 19ab52b commit c16f070
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 c16f070

Please sign in to comment.