diff options
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/gc.rs | 5 | ||||
-rw-r--r-- | src/table/merkle.rs | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/src/table/gc.rs b/src/table/gc.rs index 9ffae184..12218d97 100644 --- a/src/table/gc.rs +++ b/src/table/gc.rs @@ -344,10 +344,7 @@ where } } - 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.gc.gc_loop_iter().await? { None => Ok(WorkerState::Busy), Some(delay) => { diff --git a/src/table/merkle.rs b/src/table/merkle.rs index ca5891a7..a5c29723 100644 --- a/src/table/merkle.rs +++ b/src/table/merkle.rs @@ -322,10 +322,7 @@ where } } - 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> { let updater = self.0.clone(); tokio::task::spawn_blocking(move || { for _i in 0..100 { |