fmsg: add to wg prior to enqueue
test / test (push) Successful in 27s
Details
test / test (push) Successful in 27s
Details
Adding after channel write is racy. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
c1fad649e8
commit
866270ff05
|
@ -33,16 +33,17 @@ func dequeue() {
|
|||
// queue submits ops to msgbuf but drops messages
|
||||
// when the buffer is full and dequeue is withholding
|
||||
func queue(op dOp) {
|
||||
queueSync.Add(1)
|
||||
|
||||
select {
|
||||
case msgbuf <- op:
|
||||
queueSync.Add(1)
|
||||
default:
|
||||
// send the op anyway if not withholding
|
||||
// as dequeue will get to it eventually
|
||||
if !wstate.Load() {
|
||||
queueSync.Add(1)
|
||||
msgbuf <- op
|
||||
} else {
|
||||
queueSync.Done()
|
||||
// increment dropped message count
|
||||
dropped.Add(1)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue