diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-14 15:25:29 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-14 15:25:29 +0100 |
commit | dfc131850a09e7ceacfa98315adbef156e07e9ca (patch) | |
tree | b9684958e211e0dd0389c12a166c9d1af5e8b5f9 /src/table/sync.rs | |
parent | d4af27f920ce48a60f2073e98b17bdf963241686 (diff) | |
download | garage-dfc131850a09e7ceacfa98315adbef156e07e9ca.tar.gz garage-dfc131850a09e7ceacfa98315adbef156e07e9ca.zip |
Simplified and more aggressive worker exit logic
Diffstat (limited to 'src/table/sync.rs')
-rw-r--r-- | src/table/sync.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/table/sync.rs b/src/table/sync.rs index 1e7618ca..d6d272ab 100644 --- a/src/table/sync.rs +++ b/src/table/sync.rs @@ -593,10 +593,7 @@ impl<F: TableSchema + 'static, R: TableReplication + 'static> Worker for SyncWor } } - async fn wait_for_work(&mut self, must_exit: &watch::Receiver<bool>) -> WorkerState { - if *must_exit.borrow() { - return WorkerState::Done; - } + async fn wait_for_work(&mut self) -> WorkerState { select! { s = self.add_full_sync_rx.recv() => { if let Some(()) = s { |