mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-12 18:01:51 +00:00
don't penalize dht timeouts a second time
This commit is contained in:
parent
9046dbde4f
commit
e17efb6e91
1 changed files with 0 additions and 3 deletions
|
@ -278,9 +278,6 @@ func (t *dht) doMaintenance() {
|
|||
newDests := make(map[NodeID]time.Time, len(dests))
|
||||
for nodeID, start := range dests {
|
||||
if now.Sub(start) > 6*time.Second {
|
||||
if info, isIn := t.table[*getNodeID(&key)]; isIn {
|
||||
info.pings++
|
||||
}
|
||||
continue
|
||||
}
|
||||
newDests[nodeID] = start
|
||||
|
|
Loading…
Reference in a new issue