From b98c0b4bf4e4233a1e6513e3380aeeab8d025607 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sun, 24 Jul 2022 18:46:32 -0700 Subject: [PATCH] disable symlink translation for now --- weed/mount/weedfs_attr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/mount/weedfs_attr.go b/weed/mount/weedfs_attr.go index 032456399..e31c170cb 100644 --- a/weed/mount/weedfs_attr.go +++ b/weed/mount/weedfs_attr.go @@ -17,7 +17,7 @@ func (wfs *WFS) GetAttr(cancel <-chan struct{}, input *fuse.GetAttrIn, out *fuse } inode := input.NodeId - _, _, entry, inode, status := wfs.maybeReadEntry(inode, true) + _, _, entry, inode, status := wfs.maybeReadEntry(inode, false) if status == fuse.OK { out.AttrValid = 1 wfs.setAttrByPbEntry(&out.Attr, inode, entry)