diff options
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/background/job_worker.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/util/background/job_worker.rs b/src/util/background/job_worker.rs index 6754382a..2568ea11 100644 --- a/src/util/background/job_worker.rs +++ b/src/util/background/job_worker.rs @@ -21,10 +21,7 @@ impl Worker for JobWorker { format!("Job worker #{}", self.index) } - async fn work( - &mut self, - _must_exit: &mut watch::Receiver<bool>, - ) -> Result<WorkerState, Error> { + async fn work(&mut self, _must_exit: &mut watch::Receiver<bool>) -> Result<WorkerState, Error> { match self.next_job.take() { None => return Ok(WorkerState::Idle), Some(job) => { |