mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-23 14:50:47 +08:00
add condition when inFlightUploadDataLimitCond signal
This commit is contained in:
@@ -79,7 +79,9 @@ func (vs *VolumeServer) privateStoreHandler(w http.ResponseWriter, r *http.Reque
|
|||||||
atomic.AddInt64(&vs.inFlightUploadDataSize, contentLength)
|
atomic.AddInt64(&vs.inFlightUploadDataSize, contentLength)
|
||||||
defer func() {
|
defer func() {
|
||||||
atomic.AddInt64(&vs.inFlightUploadDataSize, -contentLength)
|
atomic.AddInt64(&vs.inFlightUploadDataSize, -contentLength)
|
||||||
vs.inFlightUploadDataLimitCond.Signal()
|
if vs.concurrentUploadLimit != 0 {
|
||||||
|
vs.inFlightUploadDataLimitCond.Signal()
|
||||||
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
// processs uploads
|
// processs uploads
|
||||||
|
Reference in New Issue
Block a user