Merge pull request #188 from quorumcontrol/heartbeat-race

Fix gossipsub race condition for heartbeat
This commit is contained in:
vyzo 2019-05-28 19:57:04 +03:00 committed by GitHub
commit 4221a3966b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ func (gs *GossipSubRouter) Publish(from peer.ID, msg *pb.Message) {
if !ok { if !ok {
// we are not in the mesh for topic, use fanout peers // we are not in the mesh for topic, use fanout peers
gmap, ok = gs.fanout[topic] gmap, ok = gs.fanout[topic]
if !ok { if !ok || len(gmap) == 0 {
// we don't have any, pick some // we don't have any, pick some
peers := gs.getPeers(topic, GossipSubD, func(peer.ID) bool { return true }) peers := gs.getPeers(topic, GossipSubD, func(peer.ID) bool { return true })