aboutsummaryrefslogtreecommitdiff
path: root/src/garage/cli
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2023-05-04 10:45:44 +0200
committerAlex Auvolat <alex@adnab.me>2023-06-09 16:23:37 +0200
commit4ea53dc75930d813b84b79c3427b194b6e664ce7 (patch)
tree7bdd1e4b13c8dcb13fec64d1a7fb319386d29645 /src/garage/cli
parent058518c22b701d5d2dc3e838518d88ce9a4cc875 (diff)
downloadgarage-4ea53dc75930d813b84b79c3427b194b6e664ce7.tar.gz
garage-4ea53dc75930d813b84b79c3427b194b6e664ce7.zip
Add multipart upload repair
Diffstat (limited to 'src/garage/cli')
-rw-r--r--src/garage/cli/structs.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/garage/cli/structs.rs b/src/garage/cli/structs.rs
index 986592ae..6444d374 100644
--- a/src/garage/cli/structs.rs
+++ b/src/garage/cli/structs.rs
@@ -452,6 +452,9 @@ pub enum RepairWhat {
/// Only redo the propagation of object deletions to the version table (slow)
#[structopt(name = "versions", version = garage_version())]
Versions,
+ /// Only redo the propagation of object deletions to the multipart upload table (slow)
+ #[structopt(name = "mpu", version = garage_version())]
+ MultipartUploads,
/// Only redo the propagation of version deletions to the block ref table (extremely slow)
#[structopt(name = "block_refs", version = garage_version())]
BlockRefs,