diff options
author | Alex Auvolat <alex@adnab.me> | 2023-12-08 11:24:23 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-12-08 11:24:23 +0100 |
commit | 7f2541101f15614c79020b35d3d7dab767c32676 (patch) | |
tree | de4cd319331a0f427ddebb5b0544a3861e8f315c /src/garage/cli/util.rs | |
parent | 91b874c4efa40e64663368369a712e0a5a389e53 (diff) | |
download | garage-7f2541101f15614c79020b35d3d7dab767c32676.tar.gz garage-7f2541101f15614c79020b35d3d7dab767c32676.zip |
cli: improvements to the layout commands when multiple layouts are live
Diffstat (limited to 'src/garage/cli/util.rs')
-rw-r--r-- | src/garage/cli/util.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/garage/cli/util.rs b/src/garage/cli/util.rs index 2232d395..0511e2b1 100644 --- a/src/garage/cli/util.rs +++ b/src/garage/cli/util.rs @@ -450,6 +450,8 @@ pub fn print_block_info( if refcount != nondeleted_count { println!(); - println!("Warning: refcount does not match number of non-deleted versions"); + println!( + "Warning: refcount does not match number of non-deleted versions (see issue #644)." + ); } } |