Skip to content

Commit

Permalink
increase attempt_async! timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
0xOsiris committed Oct 31, 2024
1 parent bf0372e commit e7e5a62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ use world_tree::tree::WorldTreeProvider;
macro_rules! attempt_async {
($e:expr) => {
{
const MAX_ATTEMPTS: usize = 10;
const SLEEP_DURATION: Duration = Duration::from_secs(5);
const MAX_ATTEMPTS: usize = 20;
const SLEEP_DURATION: Duration = Duration::from_secs(12);
let mut attempt = 0;

loop {
Expand Down

0 comments on commit e7e5a62

Please sign in to comment.