diff options
| author | chrislu <chris.lu@gmail.com> | 2022-02-12 22:41:45 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-02-12 22:41:45 -0800 |
| commit | 7cfbf1e85fb407751038f750ecd156742ab13359 (patch) | |
| tree | a0fffb088bf080ebd9710d575e83f6b1b46d8e9e | |
| parent | 4c75fd5f9c01af818894411e8a1e81dd2d5b1d20 (diff) | |
| download | seaweedfs-7cfbf1e85fb407751038f750ecd156742ab13359.tar.xz seaweedfs-7cfbf1e85fb407751038f750ecd156742ab13359.zip | |
fix ok status
| -rw-r--r-- | weed/mount/weedfs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/mount/weedfs.go b/weed/mount/weedfs.go index fa5c7d4f9..6788b0b36 100644 --- a/weed/mount/weedfs.go +++ b/weed/mount/weedfs.go @@ -126,7 +126,7 @@ func (wfs *WFS) maybeLoadEntry(fullpath util.FullPath) (*filer_pb.Entry, fuse.St if cacheErr == filer_pb.ErrNotFound { return nil, fuse.ENOENT } - return cachedEntry.ToProtoEntry(), fuse.ENOSYS + return cachedEntry.ToProtoEntry(), fuse.OK } func (option *Option) setupUniqueCacheDirectory() { |
