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/util.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/util.rs')
-rw-r--r-- | src/garage/cli/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/garage/cli/util.rs b/src/garage/cli/util.rs index 737b54b2..63fd9eba 100644 --- a/src/garage/cli/util.rs +++ b/src/garage/cli/util.rs @@ -382,7 +382,7 @@ pub fn print_block_info(hash: Hash, refcount: u64, versions: Vec<Result<Version, println!("Refcount: {}", refcount); println!(); - let mut table = vec!["Version\tBucket\tPath\tDeleted".into()]; + let mut table = vec!["Version\tBucket\tKey\tDeleted".into()]; let mut nondeleted_count = 0; for v in versions.iter() { match v { |