diff options
| author | chrislu <chris.lu@gmail.com> | 2022-07-24 18:46:32 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-07-24 18:46:32 -0700 |
| commit | b98c0b4bf4e4233a1e6513e3380aeeab8d025607 (patch) | |
| tree | 1f13eec5465bfd91a046ac7c54ed63afbf928eb3 | |
| parent | 2dc5d4adacec10e911e4000de6f72cdc91f60f74 (diff) | |
| download | seaweedfs-b98c0b4bf4e4233a1e6513e3380aeeab8d025607.tar.xz seaweedfs-b98c0b4bf4e4233a1e6513e3380aeeab8d025607.zip | |
disable symlink translation for now
| -rw-r--r-- | weed/mount/weedfs_attr.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
