mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-10-11 02:22:52 +02:00
htlcswitch: expand TestWaitingQueueThreadSafety to assert proper queue length
This commit is contained in:
@@ -67,8 +67,6 @@ func (p *packetQueue) Stop() {
|
||||
close(p.quit)
|
||||
|
||||
p.queueCond.Signal()
|
||||
|
||||
p.wg.Wait()
|
||||
}
|
||||
|
||||
// packetCoordinator is a goroutine that handles the packet overflow queue.
|
||||
@@ -126,8 +124,8 @@ func (p *packetQueue) packetCoordinator() {
|
||||
p.queueCond.L.Lock()
|
||||
p.queue[0] = nil
|
||||
p.queue = p.queue[1:]
|
||||
p.queueCond.L.Unlock()
|
||||
atomic.AddInt32(&p.queueLen, -1)
|
||||
p.queueCond.L.Unlock()
|
||||
case <-p.quit:
|
||||
return
|
||||
}
|
||||
|
Reference in New Issue
Block a user