Compare commits

...

2 Commits

Author SHA1 Message Date
Omar Abdulla 05b609dd1b Increase substrate's timeout 2025-10-20 16:44:38 +03:00
Omar Abdulla 1b43b0dd3f Drop the read lock in the remaining tasks logger 2025-10-20 16:36:10 +03:00
2 changed files with 2 additions and 1 deletions
@@ -205,6 +205,7 @@ pub async fn handle_differential_tests(
?remaining_tasks,
"Remaining Tests"
);
drop(remaining_tasks);
tokio::time::sleep(Duration::from_secs(10)).await
}
});
@@ -218,7 +218,7 @@ impl SubstrateNode {
}
},
ProcessReadinessWaitBehavior::TimeBoundedWaitFunction {
max_wait_duration: Duration::from_secs(30),
max_wait_duration: Duration::from_secs(90),
check_function: Box::new(|_, stderr_line| match stderr_line {
Some(line) => Ok(line.contains(Self::SUBSTRATE_READY_MARKER)),
None => Ok(false),