diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-16 16:51:15 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-16 16:51:15 +0100 |
commit | 08bcd5195654ae073afe31c341f0ce4b36094da0 (patch) | |
tree | 2c723a1cfb2b2083af72f0b887893e0fd09db634 /src/model/block.rs | |
parent | 1bfe9c129e2cc3780e784b0c4a784fa1679a3f97 (diff) | |
download | garage-08bcd5195654ae073afe31c341f0ce4b36094da0.tar.gz garage-08bcd5195654ae073afe31c341f0ce4b36094da0.zip |
GC object table in a specific case
Diffstat (limited to 'src/model/block.rs')
-rw-r--r-- | src/model/block.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/block.rs b/src/model/block.rs index 41729685..0d9af38f 100644 --- a/src/model/block.rs +++ b/src/model/block.rs @@ -259,7 +259,7 @@ impl BlockManager { if let Err(e) = self.resync_iter(&mut must_exit).await { warn!("Error in block resync loop: {}", e); select! { - _ = tokio::time::sleep(Duration::from_secs(10)).fuse() => (), + _ = tokio::time::sleep(Duration::from_secs(1)).fuse() => (), _ = must_exit.changed().fuse() => (), } } |