mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
commit
63c4884b16
|
@ -164,10 +164,11 @@ func (l *DiskLocation) UnloadVolume(vid VolumeId) error {
|
||||||
l.Lock()
|
l.Lock()
|
||||||
defer l.Unlock()
|
defer l.Unlock()
|
||||||
|
|
||||||
_, ok := l.volumes[vid]
|
v, ok := l.volumes[vid]
|
||||||
if !ok {
|
if !ok {
|
||||||
return fmt.Errorf("Volume not loaded, VolumeId: %d", vid)
|
return fmt.Errorf("Volume not loaded, VolumeId: %d", vid)
|
||||||
}
|
}
|
||||||
|
v.Close()
|
||||||
delete(l.volumes, vid)
|
delete(l.volumes, vid)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue