diff options
author | Alex Auvolat <alex@adnab.me> | 2023-05-04 11:49:23 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-09 16:23:37 +0200 |
commit | 511e07ecd489fa72040171fe908323873a57ac19 (patch) | |
tree | e4fe58d387f8cb3c913e4bfad8c1472151fc8d88 /src/garage/cli/cmd.rs | |
parent | 4ea53dc75930d813b84b79c3427b194b6e664ce7 (diff) | |
download | garage-511e07ecd489fa72040171fe908323873a57ac19.tar.gz garage-511e07ecd489fa72040171fe908323873a57ac19.zip |
fix mpu counter (add missing workers) and report info at appropriate places
Diffstat (limited to 'src/garage/cli/cmd.rs')
-rw-r--r-- | src/garage/cli/cmd.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/garage/cli/cmd.rs b/src/garage/cli/cmd.rs index fb77a927..045f050c 100644 --- a/src/garage/cli/cmd.rs +++ b/src/garage/cli/cmd.rs @@ -190,8 +190,9 @@ pub async fn cmd_admin( bucket, relevant_keys, counters, + mpu_counters, } => { - print_bucket_info(&bucket, &relevant_keys, &counters); + print_bucket_info(&bucket, &relevant_keys, &counters, &mpu_counters); } AdminRpc::KeyList(kl) => { print_key_list(kl); |