diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-13 15:02:42 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-13 15:02:42 +0100 |
commit | d7f90cabb0517a50a6c3dd702852770240566bfc (patch) | |
tree | 5c6f99f1dfb6c3187a1dd28a507b88c65a8dc039 /src/garage/cli/structs.rs | |
parent | 687660b27f904422c689e09d2457293e5313d325 (diff) | |
download | garage-d7f90cabb0517a50a6c3dd702852770240566bfc.tar.gz garage-d7f90cabb0517a50a6c3dd702852770240566bfc.zip |
Implement `block retry-now` and `block purge`
Diffstat (limited to 'src/garage/cli/structs.rs')
-rw-r--r-- | src/garage/cli/structs.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/garage/cli/structs.rs b/src/garage/cli/structs.rs index 6d74b1a4..e2f632f3 100644 --- a/src/garage/cli/structs.rs +++ b/src/garage/cli/structs.rs @@ -575,6 +575,7 @@ pub enum BlockOperation { #[structopt(long = "yes")] yes: bool, /// Hashes of the block to purge + #[structopt(required = true)] blocks: Vec<String>, }, } |