diff options
author | Alex Auvolat <alex@adnab.me> | 2021-11-03 22:07:43 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-11-08 15:47:47 +0100 |
commit | ad7ab3141141d292f6f925d1712f0ebf4f906692 (patch) | |
tree | c01937054552d821b44ebbe76721bf63a11c5130 /src/table/data.rs | |
parent | 74a7a550eb5c076d21185d44a1bdb60577a47779 (diff) | |
download | garage-ad7ab3141141d292f6f925d1712f0ebf4f906692.tar.gz garage-ad7ab3141141d292f6f925d1712f0ebf4f906692.zip |
Implement GC delay for table data
Diffstat (limited to 'src/table/data.rs')
-rw-r--r-- | src/table/data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/data.rs b/src/table/data.rs index 13ec62bf..fb0b6d02 100644 --- a/src/table/data.rs +++ b/src/table/data.rs @@ -55,7 +55,7 @@ where .expect("Unable to open DB Merkle TODO tree"); let gc_todo = db - .open_tree(&format!("{}:gc_todo", name)) + .open_tree(&format!("{}:gc_todo_v2", name)) .expect("Unable to open DB tree"); Arc::new(Self { |