Skip to content

Commit

Permalink
Avoid calling facade every half second in test
Browse files Browse the repository at this point in the history
  • Loading branch information
cderici committed Sep 21, 2023
1 parent 178ca71 commit 0de4fed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ async def is_leader_elected():
return any([await u.is_leader_from_status() for u in app.units])

await utils.block_until_with_coroutine(is_leader_elected,
timeout=480)
timeout=480,
wait_period=5)


@base.bootstrapped
Expand Down

0 comments on commit 0de4fed

Please sign in to comment.