mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
swarm/network: wait for subs in PeerEvents and fix stream.runSyncTest
This commit is contained in:
parent
bc42faee0a
commit
bf9c27a166
2 changed files with 19 additions and 11 deletions
|
|
@ -18,6 +18,7 @@ package simulation
|
|||
|
||||
import (
|
||||
"context"
|
||||
"sync"
|
||||
|
||||
"github.com/ethereum/go-ethereum/p2p/discover"
|
||||
|
||||
|
|
@ -71,24 +72,32 @@ func (f *PeerEventsFilter) MsgCode(c uint64) *PeerEventsFilter {
|
|||
func (s *Simulation) PeerEvents(ctx context.Context, ids []discover.NodeID, filters ...*PeerEventsFilter) <-chan PeerEvent {
|
||||
eventC := make(chan PeerEvent)
|
||||
|
||||
// wait group to make sure all subscriptons to admin peerEvents are established
|
||||
// before this function returns.
|
||||
var subsWG sync.WaitGroup
|
||||
for _, id := range ids {
|
||||
s.shutdownWG.Add(1)
|
||||
subsWG.Add(1)
|
||||
go func(id discover.NodeID) {
|
||||
defer s.shutdownWG.Done()
|
||||
|
||||
client, err := s.Net.GetNode(id).Client()
|
||||
if err != nil {
|
||||
subsWG.Done()
|
||||
eventC <- PeerEvent{NodeID: id, Error: err}
|
||||
return
|
||||
}
|
||||
events := make(chan *p2p.PeerEvent)
|
||||
sub, err := client.Subscribe(ctx, "admin", events, "peerEvents")
|
||||
if err != nil {
|
||||
subsWG.Done()
|
||||
eventC <- PeerEvent{NodeID: id, Error: err}
|
||||
return
|
||||
}
|
||||
defer sub.Unsubscribe()
|
||||
|
||||
subsWG.Done()
|
||||
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
|
|
@ -153,5 +162,7 @@ func (s *Simulation) PeerEvents(ctx context.Context, ids []discover.NodeID, filt
|
|||
}(id)
|
||||
}
|
||||
|
||||
// wait all subscriptions
|
||||
subsWG.Wait()
|
||||
return eventC
|
||||
}
|
||||
|
|
|
|||
|
|
@ -384,18 +384,15 @@ func runSyncTest(chunkCount int, nodeCount int) error {
|
|||
subscriptionCount += cnt
|
||||
}
|
||||
|
||||
go func() {
|
||||
for e := range eventC {
|
||||
if e.Error != nil {
|
||||
//return e.Error
|
||||
return
|
||||
return e.Error
|
||||
}
|
||||
subscriptionCount--
|
||||
if subscriptionCount == 0 {
|
||||
break
|
||||
}
|
||||
}
|
||||
}()
|
||||
//get the the node at that index
|
||||
//this is the node selected for upload
|
||||
node := sim.RandomUpNode()
|
||||
|
|
|
|||
Loading…
Reference in a new issue