1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-21 18:14:06 +02:00

Merge pull request #3250 from xdadrm/xdadrm-patch-xweo-byte-files-from-webdav

Fixes WebDAV 0-bytes files
This commit is contained in:
Chris Lu 2022-06-27 11:33:35 -07:00 committed by GitHub
commit dc6b1a52e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,13 @@ type WebDavServer struct {
Handler *webdav.Handler
}
func max(x, y int64) int64 {
if x <= y {
return y
}
return x
}
func NewWebDavServer(option *WebDavOption) (ws *WebDavServer, err error) {
fs, _ := NewWebDavFileSystem(option)
@ -496,6 +503,7 @@ func (f *WebDavFile) Write(buf []byte) (int, error) {
written, err := f.bufWriter.Write(buf)
if err == nil {
f.entry.Attributes.FileSize = uint64(max(f.off+int64(written), int64(f.entry.Attributes.FileSize)))
glog.V(3).Infof("WebDavFileSystem.Write %v: written [%d,%d)", f.name, f.off, f.off+int64(len(buf)))
f.off += int64(written)
}