mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Revert "Merge pull request #1683 from qieqieplus/master"
This reverts commit8cb67952db
, reversing changes made to200e56215a
.
This commit is contained in:
parent
1bf22c0b5b
commit
f56e6d231e
|
@ -101,14 +101,12 @@ func (l *DiskLocation) loadExistingVolume(fileInfo os.FileInfo, needleMapKind Ne
|
||||||
}
|
}
|
||||||
|
|
||||||
// avoid loading one volume more than once
|
// avoid loading one volume more than once
|
||||||
l.volumesLock.Lock()
|
l.volumesLock.RLock()
|
||||||
if _, found := l.volumes[vid]; found {
|
_, found := l.volumes[vid]
|
||||||
l.volumesLock.Unlock()
|
l.volumesLock.RUnlock()
|
||||||
|
if found {
|
||||||
glog.V(1).Infof("loaded volume, %v", vid)
|
glog.V(1).Infof("loaded volume, %v", vid)
|
||||||
return true
|
return true
|
||||||
} else {
|
|
||||||
l.volumes[vid] = nil
|
|
||||||
l.volumesLock.Unlock()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// load the volume
|
// load the volume
|
||||||
|
|
Loading…
Reference in a new issue