Skip to content

Commit

Permalink
chore: Reset retry params for broker_active
Browse files Browse the repository at this point in the history
  • Loading branch information
Batalex committed Dec 11, 2024
1 parent f7c0218 commit 0e46095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,8 +768,8 @@ def zookeeper_version(self) -> str:

# retry to give ZK time to update its broker zNodes before failing
@retry(
wait=wait_fixed(3),
stop=stop_after_attempt(3),
wait=wait_fixed(5),
stop=stop_after_attempt(10),
retry=retry_if_result(lambda result: result is False),
retry_error_callback=lambda _: False,
)
Expand Down

0 comments on commit 0e46095

Please sign in to comment.