Merge pull request #1383 from robin1900/master

fix dn.volumes Iterate when write issue
This commit is contained in:
Chris Lu 2020-07-08 09:53:08 -07:00 committed by GitHub
commit 6360824dd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -199,6 +199,8 @@ func (dn *DataNode) ToDataNodeInfo() *master_pb.DataNodeInfo {
// GetVolumeIds returns the human readable volume ids limited to count of max 100. // GetVolumeIds returns the human readable volume ids limited to count of max 100.
func (dn *DataNode) GetVolumeIds() string { func (dn *DataNode) GetVolumeIds() string {
dn.RLock()
defer dn.RUnlock()
ids := make([]int, 0, len(dn.volumes)) ids := make([]int, 0, len(dn.volumes))
for k := range dn.volumes { for k := range dn.volumes {