aboutsummaryrefslogtreecommitdiff
path: root/src/table/table.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-03-16 18:42:33 +0100
committerAlex Auvolat <alex@adnab.me>2021-03-16 18:42:33 +0100
commit7b10245dfb741b7f801d1f3eaa56c6cb4f385d65 (patch)
treedc9049f6a4da54641f0e9b59af8169434f119f09 /src/table/table.rs
parent08bcd5195654ae073afe31c341f0ce4b36094da0 (diff)
downloadgarage-7b10245dfb741b7f801d1f3eaa56c6cb4f385d65.tar.gz
garage-7b10245dfb741b7f801d1f3eaa56c6cb4f385d65.zip
Leader-based GC
Diffstat (limited to 'src/table/table.rs')
-rw-r--r--src/table/table.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/table.rs b/src/table/table.rs
index 421c8bf5..e203b178 100644
--- a/src/table/table.rs
+++ b/src/table/table.rs
@@ -64,7 +64,7 @@ where
let rpc_path = format!("table_{}", name);
let rpc_client = system.rpc_client::<TableRPC<F>>(&rpc_path);
- let data = TableData::new(name, instance, replication, db);
+ let data = TableData::new(system.clone(), name, instance, replication, db);
let merkle_updater = MerkleUpdater::launch(&system.background, data.clone());