Merge pull request #1592 from nspcc-dev/dont-reconnect-if-pool-is-connected

network: drop requests to discovery pool when it can't be handled
This commit is contained in:
Roman Khimov 2020-12-07 10:43:51 +03:00 committed by GitHub
commit fb13acab94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -232,15 +232,22 @@ func (d *DefaultDiscovery) run() {
requested--
}
default: // Empty pool
var added int
d.lock.Lock()
for _, addr := range d.seeds {
if !d.connectedAddrs[addr] {
delete(d.badAddrs, addr)
d.unconnectedAddrs[addr] = connRetries
d.pushToPoolOrDrop(addr)
added++
}
}
d.lock.Unlock()
// The pool is empty, but all seed nodes are already connected,
// we can end up in an infinite loop here, so drop the request.
if added == 0 {
requested = 0
}
}
}
if !ok {