volume: fix memory leak during compaction

fix https://github.com/chrislusf/seaweedfs/issues/1222
This commit is contained in:
Chris Lu
2020-03-09 22:29:02 -07:00
parent 1f8fc4b5ed
commit 0871d2cff0
7 changed files with 39 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ func (ms *MasterServer) volumeVacuumHandler(w http.ResponseWriter, r *http.Reque
return
}
}
glog.Infoln("garbageThreshold =", gcThreshold)
// glog.Infoln("garbageThreshold =", gcThreshold)
ms.Topo.Vacuum(ms.grpcDialOption, gcThreshold, ms.preallocateSize)
ms.dirStatusHandler(w, r)
}