good morning!!!!

Skip to content
Snippets Groups Projects
Commit 89860f41 authored by Darrel Herbst's avatar Darrel Herbst Committed by Felix Lange
Browse files

swarm/fuse: return amount of data written if the file exists (#15261)

If the file already existed, the WriteResponse.Size was being set
as the length of the entire file, not just the amount that was
written to the existing file.

Fixes #15216
parent 88b1db72
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ func (sf *SwarmFile) Write(ctx context.Context, req *fuse.WriteRequest, resp *fu
if err != nil {
return err
}
resp.Size = int(sf.fileSize)
resp.Size = len(req.Data)
} else {
log.Warn("Invalid write request size(%v) : off(%v)", sf.fileSize, req.Offset)
return errInvalidOffset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment