aboutsummaryrefslogtreecommitdiff
path: root/src/garage/repair.rs
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-06-24 01:34:28 +0200
committerAlex Auvolat <alex@adnab.me>2021-10-27 10:31:03 +0200
commit28c015d9ffcb3255295572465654fdca680b1964 (patch)
treeda668e3594cfaf5bc59435127bf1390b94f98aab /src/garage/repair.rs
parent4e8af1d95645447ee879c9681775c35db1764d58 (diff)
downloadgarage-28c015d9ffcb3255295572465654fdca680b1964.tar.gz
garage-28c015d9ffcb3255295572465654fdca680b1964.zip
add cli parameter to verify local bloc integrity
reuse code for listing local blocks add disk i/o speed limit on integrity check
Diffstat (limited to 'src/garage/repair.rs')
-rw-r--r--src/garage/repair.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/garage/repair.rs b/src/garage/repair.rs
index 8200f1f0..a67bf2e5 100644
--- a/src/garage/repair.rs
+++ b/src/garage/repair.rs
@@ -63,6 +63,14 @@ impl Repair {
.await?;
}
+ if let Some(RepairWhat::BlockIntegrity { limit }) = opt.what {
+ info!("Verifying integrity of stored blocks");
+ self.garage
+ .block_manager
+ .verify_data_store_integrity(&must_exit, limit)
+ .await?;
+ }
+
Ok(())
}