1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-08-28 20:50:48 +02:00

fix naming

fix https://github.com/seaweedfs/seaweedfs/issues/4305
This commit is contained in:
chrislu 2023-03-14 08:38:02 -07:00
parent b12d9b8598
commit 2268d38263

View file

@ -63,7 +63,7 @@ func (c *commandS3BucketList) Do(args []string, commandEnv *CommandEnv, writer i
collectionSize = collectionInfo.Size
fileCount = collectionInfo.FileCount - collectionInfo.DeleteCount
}
fmt.Fprintf(writer, " %s\tsize:%.0f\tfile:%.0f", entry.Name, collectionSize, fileCount)
fmt.Fprintf(writer, " %s\tsize:%.0f\tchunk:%.0f", entry.Name, collectionSize, fileCount)
if entry.Quota > 0 {
fmt.Fprintf(writer, "\tquota:%d\tusage:%.2f%%", entry.Quota, float64(collectionSize)*100/float64(entry.Quota))
}