From d1602f35dee3b1ccbfb64b049b5c7b9bfbfbcb3f Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 4 Nov 2023 02:56:21 -0400 Subject: [PATCH] Adjust split indicator --- client-cli/pvc/lib/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-cli/pvc/lib/storage.py b/client-cli/pvc/lib/storage.py index 4f78403b..33a1e8b5 100644 --- a/client-cli/pvc/lib/storage.py +++ b/client-cli/pvc/lib/storage.py @@ -454,7 +454,7 @@ def format_list_osd(config, osd_list): continue if osd_information["is_split"]: - osd_information["device"] = f"{osd_information['device']} *s" + osd_information["device"] = f"{osd_information['device']} [s]" # Deal with the size to human readable if isinstance(osd_information["stats"]["kb"], int):