Browse Source

fix concurrent map reads

pull/1778/head
Chris Lu 4 years ago
parent
commit
1102ae32c4
  1. 2
      weed/topology/volume_layout.go

2
weed/topology/volume_layout.go

@ -218,7 +218,7 @@ func (vl *VolumeLayout) ensureCorrectWritables(vid needle.VolumeId) {
func (vl *VolumeLayout) isAllWritable(vid needle.VolumeId) bool { func (vl *VolumeLayout) isAllWritable(vid needle.VolumeId) bool {
for _, dn := range vl.vid2location[vid].list { for _, dn := range vl.vid2location[vid].list {
if v, found := dn.volumes[vid]; found {
if v, getError := dn.GetVolumesById(vid); getError == nil {
if v.ReadOnly { if v.ReadOnly {
return false return false
} }

Loading…
Cancel
Save