read from sub.Done()

This commit is contained in:
Yusef Napora 2020-06-25 13:00:55 -04:00
parent 3cbf5efddd
commit 8b0f6c355c

View File

@ -97,19 +97,20 @@ func prepareDrandNode(t *TestEnvironment) (*DrandInstance, error) {
var publicAddrs []string var publicAddrs []string
var leaderAddr string var leaderAddr string
ch := make(chan *NodeAddr) ch := make(chan *NodeAddr)
t.SyncClient.MustPublishSubscribe(ctx, addrTopic, &NodeAddr{ _, sub := t.SyncClient.MustPublishSubscribe(ctx, addrTopic, &NodeAddr{
PrivateAddr: n.PrivateAddr(), PrivateAddr: n.PrivateAddr(),
PublicAddr: n.PublicAddr(), PublicAddr: n.PublicAddr(),
IsLeader: isLeader, IsLeader: isLeader,
}, ch) }, ch)
for i := 0; i < nNodes; i++ { for i := 0; i < nNodes; i++ {
msg, ok := <-ch select {
if !ok { case msg := <-ch:
return nil, fmt.Errorf("failed to read drand node addr from sync service") publicAddrs = append(publicAddrs, fmt.Sprintf("http://%s", msg.PublicAddr))
} if msg.IsLeader {
publicAddrs = append(publicAddrs, fmt.Sprintf("http://%s", msg.PublicAddr)) leaderAddr = msg.PrivateAddr
if msg.IsLeader { }
leaderAddr = msg.PrivateAddr case err := <-sub.Done():
return nil, fmt.Errorf("unable to read drand addrs from sync service: %w", err)
} }
} }
if leaderAddr == "" { if leaderAddr == "" {
@ -196,10 +197,15 @@ func prepareDrandNode(t *TestEnvironment) (*DrandInstance, error) {
} }
infoCh := make(chan *peer.AddrInfo, nNodes) infoCh := make(chan *peer.AddrInfo, nNodes)
infoTopic := sync.NewTopic("drand-gossip-addrs", &peer.AddrInfo{}) infoTopic := sync.NewTopic("drand-gossip-addrs", &peer.AddrInfo{})
t.SyncClient.MustPublishSubscribe(ctx, infoTopic, relayInfo, infoCh)
_, sub := t.SyncClient.MustPublishSubscribe(ctx, infoTopic, relayInfo, infoCh)
for i := 0; i < nNodes; i++ { for i := 0; i < nNodes; i++ {
ai := <-infoCh select {
relayAddrs = append(relayAddrs, *ai) case ai := <-infoCh:
relayAddrs = append(relayAddrs, *ai)
case err := <-sub.Done():
return nil, fmt.Errorf("unable to get drand relay addr from sync service: %w", err)
}
} }
} }