aboutsummaryrefslogtreecommitdiff
path: root/weed/mount/weedfs.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-05-24 18:52:04 -0700
committerchrislu <chris.lu@gmail.com>2022-05-24 18:52:04 -0700
commit5b8b0229858dd4a85c31ece162d48e304efbfc4e (patch)
treeffb7e5fe358b1fa00e3d8c8a61d804efa652ae3f /weed/mount/weedfs.go
parentdf50afc64270f1728a349d28f16dd5cab9eb5073 (diff)
downloadseaweedfs-5b8b0229858dd4a85c31ece162d48e304efbfc4e.tar.xz
seaweedfs-5b8b0229858dd4a85c31ece162d48e304efbfc4e.zip
remove unused parameter
Diffstat (limited to 'weed/mount/weedfs.go')
-rw-r--r--weed/mount/weedfs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/mount/weedfs.go b/weed/mount/weedfs.go
index 2e22e3589..2ab82b3ed 100644
--- a/weed/mount/weedfs.go
+++ b/weed/mount/weedfs.go
@@ -161,7 +161,7 @@ func (wfs *WFS) maybeLoadEntry(fullpath util.FullPath) (*filer_pb.Entry, fuse.St
}
// read from async meta cache
- meta_cache.EnsureVisited(wfs.metaCache, wfs, util.FullPath(dir), nil)
+ meta_cache.EnsureVisited(wfs.metaCache, wfs, util.FullPath(dir))
cachedEntry, cacheErr := wfs.metaCache.FindEntry(context.Background(), fullpath)
if cacheErr == filer_pb.ErrNotFound {
return nil, fuse.ENOENT