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.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index de2f82f..93d2d01 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -534,7 +534,8 @@ impl<'a> JobTask<'a> {
// ... if there are any, error
if !missing_deps.is_empty() {
- return Err(anyhow!("Childs finished, but dependencies still missing: {:?}", missing_deps))
+ let missing: Vec<String> = missing_deps.iter().map(|u| u.to_string()).collect();
+ return Err(anyhow!("Childs finished, but dependencies still missing: {:?}", missing))
} else {
// all dependencies are received
Ok(false)