peer: allow msgConsumers to also exit on peer quit send

This commit is contained in:
Olaoluwa Osuntokun 2018-08-24 17:58:24 -07:00
parent 33c5c9661e
commit 5130949604
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -753,6 +753,8 @@ func (ms *msgStream) msgConsumer() {
// Otherwise, we'll check the message queue for any new
// items.
select {
case <-ms.peer.quit:
return
case <-ms.quit:
ms.msgCond.L.Unlock()
return
@ -777,6 +779,8 @@ func (ms *msgStream) msgConsumer() {
// grow indefinitely.
select {
case ms.producerSema <- struct{}{}:
case <-ms.peer.quit:
return
case <-ms.quit:
return
}