increase timeout in local_cluster test

This commit is contained in:
steve-gg 2023-06-09 14:05:36 +02:00
parent 54d83be7cf
commit a67465ae22
1 changed files with 2 additions and 1 deletions

View File

@ -345,7 +345,8 @@ pub fn check_for_new_roots(
let mut done = false;
let mut last_print = Instant::now();
let loop_start = Instant::now();
let loop_timeout = Duration::from_secs(180);
// TODO revert - trying to reproduce flaky test test_hard_fork_with_gap_in_roots
let loop_timeout = Duration::from_secs(300);
let mut num_roots_map = HashMap::new();
while !done {
assert!(loop_start.elapsed() < loop_timeout);