Commit 654e5b4d authored by Dirk McCormick's avatar Dirk McCormick

fix: log error for unexpected reverse index mismatch

parent 85f0e9fa
...@@ -360,6 +360,7 @@ func (pwm *peerWantManager) wantPeerCounts(c cid.Cid) wantPeerCnts { ...@@ -360,6 +360,7 @@ func (pwm *peerWantManager) wantPeerCounts(c cid.Cid) wantPeerCnts {
for p := range pwm.wantPeers[c] { for p := range pwm.wantPeers[c] {
pws, ok := pwm.peerWants[p] pws, ok := pwm.peerWants[p]
if !ok { if !ok {
log.Errorf("reverse index has extra peer %s for key %s in peerWantManager", string(p), c)
continue continue
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment