diff options
author | Alex Auvolat <alex@adnab.me> | 2022-07-08 10:45:20 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-07-08 10:45:20 +0200 |
commit | 08cd5f2f1d4a42e63a256eb3a7811e874d222fe4 (patch) | |
tree | 256ee885e93cf1c41dc2869fe13a648aa91ab9b5 /src/table/gc.rs | |
parent | 18d014dcc5840e5eae8581a5bfa846aad93beeea (diff) | |
download | garage-08cd5f2f1d4a42e63a256eb3a7811e874d222fe4.tar.gz garage-08cd5f2f1d4a42e63a256eb3a7811e874d222fe4.zip |
cargo fmtbackground-task-manager
Diffstat (limited to 'src/table/gc.rs')
-rw-r--r-- | src/table/gc.rs | 5 |
1 files changed, 1 insertions, 4 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) => { |