From 0e49e0c8b59a77ba44733cfd3941433f11258d72 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sun, 26 Apr 2020 16:22:22 +0000 Subject: [PATCH] Add key table to repair procedure --- src/garage/repair.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/garage/repair.rs b/src/garage/repair.rs index 4efb9e84..e91b4159 100644 --- a/src/garage/repair.rs +++ b/src/garage/repair.rs @@ -52,6 +52,13 @@ impl Repair { .unwrap() .add_full_scan() .await; + self.garage + .key_table + .syncer + .load_full() + .unwrap() + .add_full_scan() + .await; } // TODO: wait for full sync to finish before proceeding to the rest?