1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-15 21:46:50 +02:00

fix compilation

This commit is contained in:
Chris Lu 2020-07-24 09:36:05 -07:00
parent 5788f1f6bf
commit dd29b8c81d

View file

@ -64,7 +64,6 @@ type WFS struct {
stats statsCache
root fs.Node
fsNodeCache *FsCache
chunkCache *chunk_cache.ChunkCache
metaCache *meta_cache.MetaCache
@ -102,7 +101,6 @@ func NewSeaweedFileSystem(option *Option) *WFS {
})
wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs}
// wfs.fsNodeCache = newFsCache(wfs.root)
return wfs
}