Merge pull request #22751 from holiman/tracker_fix

p2p/tracker: properly clean up fulfilled requests
This commit is contained in:
Péter Szilágyi 2021-04-27 21:43:07 +03:00 committed by GitHub
commit 55043eec45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,6 +186,7 @@ func (t *Tracker) Fulfil(peer string, version uint, code uint64, id uint64) {
}
// Everything matches, mark the request serviced and meter it
t.expire.Remove(req.expire)
delete(t.pending, id)
if req.expire.Prev() == nil {
t.wake.Stop()
t.schedule()