Skip to content

Commit

Permalink
Increase retries
Browse files Browse the repository at this point in the history
  • Loading branch information
lmlg committed May 6, 2024
1 parent 817534a commit 239d028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zaza/openstack/charm_tests/ceph/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ def entity_filter(name):

for attempt in tenacity.Retrying(
wait=tenacity.wait_exponential(multiplier=2, max=32),
reraise=True, stop=tenacity.stop_after_attempt(10),
reraise=True, stop=tenacity.stop_after_attempt(20),
retry=tenacity.retry_if_exception_type(AssertionError)
):
with attempt:
Expand Down

0 comments on commit 239d028

Please sign in to comment.