make sure the peer isn't idle before entering drop mode

This commit is contained in:
Arceliar 2020-05-24 17:43:35 -05:00
parent 9574308545
commit 4382368b08

View File

@ -304,7 +304,7 @@ func (p *peer) _handleIdle() {
func (p *peer) dropFromQueue(from phony.Actor, seq uint64) {
p.Act(from, func() {
p.Act(nil, func() {
if seq == p.seq {
if seq == p.seq && !p.idle {
p.drop = true
p.max = p.queue.size + streamMsgSize
}