diff options
Diffstat (limited to 'src/block/repair.rs')
-rw-r--r-- | src/block/repair.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/block/repair.rs b/src/block/repair.rs index cd5afe44..07ff6772 100644 --- a/src/block/repair.rs +++ b/src/block/repair.rs @@ -62,10 +62,7 @@ impl Worker for RepairWorker { } } - 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.block_iter.as_mut() { None => { // Phase 1: Repair blocks from RC table. @@ -279,10 +276,7 @@ impl Worker for ScrubWorker { )) } - 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.rx_cmd.try_recv() { Ok(cmd) => self.handle_cmd(cmd).await, Err(mpsc::error::TryRecvError::Disconnected) => return Ok(WorkerState::Done), |