mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
clean up cache on exit
This commit is contained in:
parent
d4dc00471a
commit
37e8fce841
|
@ -125,6 +125,7 @@ func NewSeaweedFileSystem(option *Option) *WFS {
|
|||
})
|
||||
grace.OnInterrupt(func() {
|
||||
wfs.metaCache.Shutdown()
|
||||
os.RemoveAll(option.getUniqueCacheDir())
|
||||
})
|
||||
|
||||
wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs, id: 1}
|
||||
|
|
|
@ -99,6 +99,7 @@ func NewSeaweedFileSystem(option *Option) *WFS {
|
|||
})
|
||||
grace.OnInterrupt(func() {
|
||||
wfs.metaCache.Shutdown()
|
||||
os.RemoveAll(option.getUniqueCacheDir())
|
||||
})
|
||||
|
||||
if wfs.option.ConcurrentWriters > 0 {
|
||||
|
|
Loading…
Reference in a new issue