mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 11:27:32 +08:00
Fix memory not being unmapped
This commit is contained in:
@@ -49,10 +49,10 @@ func (v *Volume) Destroy() (err error) {
|
||||
err = fmt.Errorf("volume %d is compacting", v.Id)
|
||||
return
|
||||
}
|
||||
mem_map, exists := memory_map.FileMemoryMap[v.FileName()]
|
||||
mem_map, exists := memory_map.FileMemoryMap[v.dataFile.Name()]
|
||||
if exists {
|
||||
mem_map.DeleteFileAndMemoryMap()
|
||||
delete(memory_map.FileMemoryMap, v.FileName())
|
||||
delete(memory_map.FileMemoryMap, v.dataFile.Name())
|
||||
}
|
||||
|
||||
v.Close()
|
||||
|
Reference in New Issue
Block a user