summaryrefslogtreecommitdiffstats
path: root/src/orchestrator
diff options
context:
space:
mode:
Diffstat (limited to 'src/orchestrator')
-rw-r--r--src/orchestrator/orchestrator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index eb03c0a..ef12a53 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -101,7 +101,7 @@ impl<'a> Orchestrator<'a> {
.await?
.into_iter()
.map(|runnable| {
- let bar = multibar.add(progress_generator.job_bar(runnable.uuid()));
+ let bar = multibar.add(progress_generator.bar());
Self::run_runnable(runnable, scheduler, bar)
})
.collect::<futures::stream::FuturesUnordered<_>>()