mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-10 07:20:39 +03:00
make sure the peer isn't idle before entering drop mode
This commit is contained in:
parent
9574308545
commit
4382368b08
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user