Skip to content

Commit

Permalink
bugfix: Shouldn't panic when querying rank of unknown peer
Browse files Browse the repository at this point in the history
  • Loading branch information
wizeguyy committed Nov 18, 2024
1 parent dd7a600 commit 5976432
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions p2p/node/peerManager/peerManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,25 +526,12 @@ func (pm *BasicPeerManager) AdjustPeerQuality(peer p2p.PeerID, topic string, adj
pm.recategorizePeer(peer, topic)
}

func (pm *BasicPeerManager) calculatePeerLiveness(peer p2p.PeerID) float64 {
peerTag := pm.GetTagInfo(peer)
if peerTag == nil {
func (pm *BasicPeerManager) GetPeerQuality(peer p2p.PeerID) int {
if info := pm.GetTagInfo(peer); info != nil {
return info.Tags["quality"]
} else {
return 0
}

liveness := peerTag.Tags["liveness_reports"]
latents := peerTag.Tags["latency_reports"]
return float64(liveness) / float64(latents)
}

func (pm *BasicPeerManager) calculatePeerResponsiveness(peer p2p.PeerID) float64 {
peerTag := pm.GetTagInfo(peer)
if peerTag == nil {
return 0
}
responses := peerTag.Tags["responses_served"]
misses := peerTag.Tags["responses_missed"]
return float64(responses) / float64(misses)
}

// Peers will be divided into three buckets (good, bad, ugly) based on their quality score
Expand Down

0 comments on commit 5976432

Please sign in to comment.