use volumes variable

fix leveldb mount bug
This commit is contained in:
WenLong LI 2018-05-03 12:13:53 +08:00 committed by GitHub
parent 02a1597642
commit b9068c1304
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -164,11 +164,11 @@ func (l *DiskLocation) UnloadVolume(vid VolumeId) error {
l.Lock()
defer l.Unlock()
_, ok := l.volumes[vid]
v, ok := l.volumes[vid]
if !ok {
return fmt.Errorf("Volume not loaded, VolumeId: %d", vid)
}
l.volumes[vid].Close()
v.Close()
delete(l.volumes, vid)
return nil
}