server: cleanup persistentPeerAddr when pruned

Delete all the stored addresses from the persistentPeerAddr map when we
prune the persistent peer.
This commit is contained in:
Elle Mouton 2021-11-03 14:50:39 +02:00
parent a6f22c6185
commit 789f00746b
No known key found for this signature in database
GPG Key ID: D7D916376026F177

View File

@ -2858,6 +2858,7 @@ func (s *server) prunePersistentPeerConnection(compressedPubKey [33]byte) {
if perm, ok := s.persistentPeers[pubKeyStr]; ok && !perm {
delete(s.persistentPeers, pubKeyStr)
delete(s.persistentPeersBackoff, pubKeyStr)
delete(s.persistentPeerAddrs, pubKeyStr)
s.cancelConnReqs(pubKeyStr, nil)
s.mu.Unlock()