We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0442968 + 787018f commit 5ed0aedCopy full SHA for 5ed0aed
control/cli.py
@@ -1557,8 +1557,7 @@ def ns_list(self, args):
1557
1558
namespaces_list.append([ns.nsid,
1559
break_string(ns.bdev_name, "-", 2),
1560
- ns.rbd_pool_name,
1561
- ns.rbd_image_name,
+ f"{ns.rbd_pool_name}/{ns.rbd_image_name}",
1562
self.format_size(ns.rbd_image_size),
1563
self.format_size(ns.block_size),
1564
break_string(ns.uuid, "-", 3),
@@ -1575,7 +1574,7 @@ def ns_list(self, args):
1575
1574
else:
1576
table_format = "plain"
1577
namespaces_out = tabulate(namespaces_list,
1578
- headers = ["NSID", "Bdev\nName", "RBD\nPool", "RBD\nImage",
+ headers = ["NSID", "Bdev\nName", "RBD\nImage",
1579
"Image\nSize", "Block\nSize", "UUID", "Load\nBalancing\nGroup", "Visibility",
1580
"R/W IOs\nper\nsecond", "R/W MBs\nper\nsecond",
1581
"Read MBs\nper\nsecond", "Write MBs\nper\nsecond"],
0 commit comments