don't keep reusing the same IP for updates

This commit is contained in:
Niko Storni 2020-05-05 05:58:34 +02:00
parent 95890cbabf
commit 6e7bb994d0

View file

@ -130,7 +130,6 @@ func (i *IPPool) ReleaseAll() {
} }
localIP := &i.ips[j] localIP := &i.ips[j]
localIP.InUse = false localIP.InUse = false
localIP.LastUse = time.Now()
} }
} }