mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
avoid nil
This commit is contained in:
parent
cb9cc29518
commit
38bbef7ec1
|
@ -205,7 +205,10 @@ type CapacityFunc func(*master_pb.DataNodeInfo) int
|
||||||
|
|
||||||
func capacityByMaxVolumeCount(diskType types.DiskType) CapacityFunc {
|
func capacityByMaxVolumeCount(diskType types.DiskType) CapacityFunc {
|
||||||
return func(info *master_pb.DataNodeInfo) int {
|
return func(info *master_pb.DataNodeInfo) int {
|
||||||
diskInfo := info.DiskInfos[string(diskType)]
|
diskInfo, found := info.DiskInfos[string(diskType)]
|
||||||
|
if !found {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
return int(diskInfo.MaxVolumeCount)
|
return int(diskInfo.MaxVolumeCount)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue