feat(cli): idle not show group stats#1000021930

Signed-off-by: clinx <chenlin1@oppo.com>
This commit is contained in:
clinx 2025-03-28 16:07:02 +08:00 committed by zhumingze1108
parent 2176a61e7e
commit b677abc848

View File

@ -517,7 +517,7 @@ func newCmdFlashGroupGraph(client *master.MasterClient) *cobra.Command {
tbl = showFlashNodesView(busyNodes, true, groupStatusMap, table{graphFlashNodeTitle})
stdoutln(alignTable(tbl...))
stdoutln("[FlashNodes Idle]")
tbl = showFlashNodesView(idleNodes, true, groupStatusMap, table{graphFlashNodeTitle})
tbl = showFlashNodesView(idleNodes, true, nil, table{formatFlashNodeViewTableTitle})
stdoutln(alignTable(tbl...))
return
},