mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
adjust collection list output
This commit is contained in:
parent
e48267e287
commit
22fbbf023b
|
@ -30,7 +30,7 @@ func (c *commandCollectionList) Do(args []string, commandEnv *commandEnv, writer
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, c := range resp.Collections {
|
for _, c := range resp.Collections {
|
||||||
fmt.Fprintf(writer, "collection:\"%s\"\n", c.GetName())
|
fmt.Fprintf(writer, "collection:\"%s\"\treplication:\"%s\"\tTTL:\"%s\"\n", c.GetName(), c.GetReplication(), c.GetTtl())
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Fprintf(writer, "Total %d collections.\n", len(resp.Collections))
|
fmt.Fprintf(writer, "Total %d collections.\n", len(resp.Collections))
|
||||||
|
|
Loading…
Reference in a new issue