Browse Source

mount: fix truncate operation

fix https://github.com/seaweedfs/seaweedfs/issues/2609
pull/3413/head
chrislu 2 years ago
parent
commit
8a880a139d
  1. 2
      weed/mount/weedfs_attr.go

2
weed/mount/weedfs_attr.go

@ -68,6 +68,8 @@ func (wfs *WFS) SetAttr(cancel <-chan struct{}, input *fuse.SetAttrIn, out *fuse
glog.V(4).Infof("truncated whole chunk %+v\n", chunk.GetFileIdString())
truncatedChunks = append(truncatedChunks, chunk)
}
} else {
chunks = append(chunks, chunk)
}
}
// set the new chunks and reset entry cache

Loading…
Cancel
Save