From 8fe75692ee9adaae3c2fc0a735ae4d8a172d97ae Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 2 Jul 2021 13:57:34 -0700 Subject: [PATCH] volume: address "unaligned 64-bit atomic operation" fix https://github.com/chrislusf/seaweedfs/issues/2177 --- weed/server/volume_server.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go index 0d765a253..be50739c6 100644 --- a/weed/server/volume_server.go +++ b/weed/server/volume_server.go @@ -17,6 +17,10 @@ import ( ) type VolumeServer struct { + inFlightDataSize int64 + concurrentUploadLimit int64 + inFlightDataLimitCond *sync.Cond + SeedMasterNodes []string currentMaster string pulseSeconds int @@ -35,10 +39,6 @@ type VolumeServer struct { fileSizeLimitBytes int64 isHeartbeating bool stopChan chan bool - - inFlightDataSize int64 - inFlightDataLimitCond *sync.Cond - concurrentUploadLimit int64 } func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,