mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
refactoring
This commit is contained in:
parent
b3e526ba95
commit
ea57654e34
|
@ -45,7 +45,7 @@ func (c *commandCollectionList) Do(args []string, commandEnv *CommandEnv, writer
|
|||
|
||||
collectionInfos := make(map[string]*CollectionInfo)
|
||||
|
||||
writeCollectionInfo(writer, topologyInfo, collectionInfos)
|
||||
collectCollectionInfo(topologyInfo, collectionInfos)
|
||||
|
||||
for _, c := range collections {
|
||||
cif, found := collectionInfos[c]
|
||||
|
@ -92,7 +92,7 @@ func addToCollection(collectionInfos map[string]*CollectionInfo, vif *master_pb.
|
|||
cif.VolumeCount++
|
||||
}
|
||||
|
||||
func writeCollectionInfo(writer io.Writer, t *master_pb.TopologyInfo, collectionInfos map[string]*CollectionInfo) {
|
||||
func collectCollectionInfo(t *master_pb.TopologyInfo, collectionInfos map[string]*CollectionInfo) {
|
||||
for _, dc := range t.DataCenterInfos {
|
||||
for _, r := range dc.RackInfos {
|
||||
for _, dn := range r.DataNodeInfos {
|
||||
|
|
Loading…
Reference in a new issue