From 90d55cd179732a375f112c72893e2cca1b41afd1 Mon Sep 17 00:00:00 2001 From: Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.com> Date: Thu, 1 Sep 2022 22:31:57 +0500 Subject: [PATCH] avoid data race read fileChunksSize (#3570) https://github.com/seaweedfs/seaweedfs/issues/3557 --- weed/server/filer_server_handlers_write_upload.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/weed/server/filer_server_handlers_write_upload.go b/weed/server/filer_server_handlers_write_upload.go index 1a7449670..4dc588055 100644 --- a/weed/server/filer_server_handlers_write_upload.go +++ b/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)