1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-03 23:56:41 +02:00

fix tests

This commit is contained in:
Chris Lu 2020-12-01 19:37:21 -08:00
parent a9efaa6385
commit 45dba088cd

View file

@ -450,7 +450,7 @@ func (f *WebDavFile) Write(buf []byte) (int, error) {
manifestedChunks, manifestErr := filer.MaybeManifestize(f.saveDataAsChunk, f.entry.Chunks)
if manifestErr != nil {
// not good, but should be ok
glog.V(0).Infof("file %s close MaybeManifestize: %v", manifestErr)
glog.V(0).Infof("file %s close MaybeManifestize: %v", f.name, manifestErr)
} else {
f.entry.Chunks = manifestedChunks
}