This commit is contained in:
jif-oai
2025-10-16 16:56:54 +01:00
parent c052b89333
commit ac2b3ec2bb
3 changed files with 20 additions and 1 deletions

View File

@@ -99,7 +99,14 @@ impl SolverRole {
Some(Self::final_delivery_schema()),
)
.await?;
let _ = session::await_first_idle(self.hub.as_ref(), &handle, Duration::from_secs(5), None)
// Allow more time for the solver to start emitting the
// finalization signal before timing out as "idle".
let _ = session::await_first_idle(
self.hub.as_ref(),
&handle,
Duration::from_secs(120),
None,
)
.await?;
Ok(())
}