Konstantin Lebedev
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
weed/server/filer_server_handlers_write_upload.go
|
@ -118,8 +118,9 @@ func (fs *FilerServer) uploadReaderToChunks(w http.ResponseWriter, r *http.Reque |
|
|
if chunk != nil { |
|
|
if chunk != nil { |
|
|
fileChunksLock.Lock() |
|
|
fileChunksLock.Lock() |
|
|
fileChunks = append(fileChunks, chunk) |
|
|
fileChunks = append(fileChunks, chunk) |
|
|
|
|
|
fileChunksSize := len(fileChunks) |
|
|
fileChunksLock.Unlock() |
|
|
fileChunksLock.Unlock() |
|
|
glog.V(4).Infof("uploaded %s chunk %d to %s [%d,%d)", fileName, len(fileChunks), chunk.FileId, offset, offset+int64(chunk.Size)) |
|
|
|
|
|
|
|
|
glog.V(4).Infof("uploaded %s chunk %d to %s [%d,%d)", fileName, fileChunksSize, chunk.FileId, offset, offset+int64(chunk.Size)) |
|
|
} |
|
|
} |
|
|
}(chunkOffset) |
|
|
}(chunkOffset) |
|
|
|
|
|
|
|
|