mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
skip printout
This commit is contained in:
parent
e18c7e160c
commit
9f4f8de9ad
|
@ -2,8 +2,6 @@ package filesys
|
|||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"bazil.org/fuse"
|
||||
"bazil.org/fuse/fs"
|
||||
"github.com/chrislusf/seaweedfs/weed/glog"
|
||||
|
@ -99,8 +97,9 @@ func (file *File) Setattr(ctx context.Context, req *fuse.SetattrRequest, resp *f
|
|||
glog.V(3).Infof("%v file setattr %+v", fullPath, req)
|
||||
if req.Valid.Size() {
|
||||
|
||||
glog.V(3).Infof("%v file setattr set size=%v", fullPath, req.Size)
|
||||
if req.Size == 0 {
|
||||
fmt.Printf("truncate %v \n", fullPath)
|
||||
// fmt.Printf("truncate %v \n", fullPath)
|
||||
file.Chunks = nil
|
||||
}
|
||||
file.attributes.FileSize = req.Size
|
||||
|
|
Loading…
Reference in a new issue