mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
rafthttp: Panic informatively when removing unknown peer ID
This commit is contained in:
parent
a71184424a
commit
317e57a8a8
@ -132,7 +132,11 @@ func (t *transport) AddPeer(id types.ID, urls []string) {
|
|||||||
func (t *transport) RemovePeer(id types.ID) {
|
func (t *transport) RemovePeer(id types.ID) {
|
||||||
t.mu.Lock()
|
t.mu.Lock()
|
||||||
defer t.mu.Unlock()
|
defer t.mu.Unlock()
|
||||||
t.peers[id].Stop()
|
if peer, ok := t.peers[id]; ok {
|
||||||
|
peer.Stop()
|
||||||
|
} else {
|
||||||
|
log.Panicf("rafthttp: unexpected removal of unknown peer '%d'", id)
|
||||||
|
}
|
||||||
delete(t.peers, id)
|
delete(t.peers, id)
|
||||||
delete(t.leaderStats.Followers, id.String())
|
delete(t.leaderStats.Followers, id.String())
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user