remove inactive streams from the window update queue

This commit is contained in:
Marten Seemann 2020-01-29 11:14:29 +07:00
parent 63c9272bf4
commit ddc886be7a
2 changed files with 25 additions and 3 deletions

View file

@ -53,6 +53,7 @@ func (q *windowUpdateQueue) QueueAll() {
}
// queue all stream-level window updates
for id := range q.queue {
delete(q.queue, id)
str, err := q.streamGetter.GetOrOpenReceiveStream(id)
if err != nil || str == nil { // the stream can be nil if it was completed before dequeing the window update
continue
@ -65,7 +66,6 @@ func (q *windowUpdateQueue) QueueAll() {
StreamID: id,
ByteOffset: offset,
})
delete(q.queue, id)
}
q.mutex.Unlock()
}