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.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index 2860748..a9b1e19 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -595,9 +595,7 @@ impl<'a> JobTask<'a> {
let job_uuid = *self.jobdef.job.uuid();
// Schedule the job on the scheduler
- match self.scheduler.schedule_job(runnable, self.bar.clone()).await?.run().await {
- // if the scheduler run reports an error,
- // that is an error from the actual execution of the job ...
+ match self.scheduler.schedule_job(runnable, self.bar.clone()).await?.run().await? {
Err(e) => {
trace!("[{}]: Scheduler returned error = {:?}", self.jobdef.job.uuid(), e);
// ... and we send that to our parent
@@ -607,6 +605,7 @@ impl<'a> JobTask<'a> {
let mut errormap = HashMap::with_capacity(1);
errormap.insert(job_uuid, e);
self.sender[0].send(Err(errormap)).await?;
+ return Ok(())
},
// if the scheduler run reports success,