mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-08-24 22:41:10 +08: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 New Issue
Block a user