Browse Source

avoid data race read fileChunksSize (#3570)

https://github.com/seaweedfs/seaweedfs/issues/3557
pull/3579/head
Konstantin Lebedev 2 years ago
committed by GitHub
parent
commit
90d55cd179
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      weed/server/filer_server_handlers_write_upload.go

3
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 {
fileChunksLock.Lock()
fileChunks = append(fileChunks, chunk)
fileChunksSize := len(fileChunks)
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)

Loading…
Cancel
Save