summaryrefslogtreecommitdiffstats
path: root/src/orchestrator/orchestrator.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/orchestrator/orchestrator.rs')
-rw-r--r--src/orchestrator/orchestrator.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index 113b756..7a36f97 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -383,6 +383,7 @@ impl<'a> Orchestrator<'a> {
let multibar_block = tokio::task::spawn_blocking(move || multibar.join());
let (_, jobs_result) = tokio::join!(multibar_block, running_jobs.collect::<Result<()>>());
let _ = jobs_result?;
+ trace!("All jobs finished");
match root_receiver.recv().await {
None => Err(anyhow!("No result received...")),
Some(Ok(results)) => {