Begin work on sync...

This commit is contained in:
Alex Auvolat
2020-04-16 14:50:49 +02:00
parent 43ce5e4ab4
commit f01c1e71b5
9 changed files with 289 additions and 86 deletions
+3 -3
View File
@@ -93,7 +93,7 @@ impl Garage {
&db,
"block_ref".to_string(),
data_rep_param.clone(),
);
).await;
let version_table = Table::new(
VersionTable {
background: background.clone(),
@@ -103,7 +103,7 @@ impl Garage {
&db,
"version".to_string(),
meta_rep_param.clone(),
);
).await;
let object_table = Table::new(
ObjectTable {
background: background.clone(),
@@ -113,7 +113,7 @@ impl Garage {
&db,
"object".to_string(),
meta_rep_param.clone(),
);
).await;
let mut garage = Self {
db,