diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-06-06 22:55:59 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-06-06 22:55:59 -0700 |
| commit | e755540be9db040272c35b511bc4a1fe41e4f0a6 (patch) | |
| tree | 05c6581ccc5b45d75e33f5e76cb5aa166cfef207 /weed/filesys/file.go | |
| parent | daabdfe35752cbe3723a5b673c1eb2bcc62ecdbc (diff) | |
| download | seaweedfs-e755540be9db040272c35b511bc4a1fe41e4f0a6.tar.xz seaweedfs-e755540be9db040272c35b511bc4a1fe41e4f0a6.zip | |
fix caching during directory listing
Diffstat (limited to 'weed/filesys/file.go')
| -rw-r--r-- | weed/filesys/file.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/file.go b/weed/filesys/file.go index ec98d4d25..95f478a76 100644 --- a/weed/filesys/file.go +++ b/weed/filesys/file.go @@ -38,7 +38,7 @@ func (file *File) Attr(ctx context.Context, attr *fuse.Attr) error { entry := item.Value().(*filer_pb.Entry) file.Chunks = entry.Chunks file.attributes = entry.Attributes - glog.V(1).Infof("file attr read cached %v attributes", file.Name) + // glog.V(1).Infof("file attr read cached %v attributes", file.Name) } else { err := file.wfs.withFilerClient(func(client filer_pb.SeaweedFilerClient) error { |
