CSI snapshot list: do not shorten snapshot ID

Signed-off-by: Grant Griffiths <ggriffiths@purestorage.com>
This commit is contained in:
Grant Griffiths
2021-05-26 23:06:56 -07:00
committed by Tim Gross
parent e694000f46
commit 9a315ad9b3

View File

@@ -154,7 +154,7 @@ func csiFormatSnapshots(snapshots []*api.CSISnapshot, verbose bool) string {
}
for _, v := range snapshots {
rows = append(rows, fmt.Sprintf("%s|%s|%s|%s|%v",
limit(v.ID, length),
v.ID,
limit(v.ExternalSourceVolumeID, length),
humanize.IBytes(uint64(v.SizeBytes)),
formatUnixNanoTime(v.CreateTime),