fix: open/close of channels

This commit is contained in:
Richard Ramos 2023-04-17 11:45:45 -04:00 committed by RichΛrd
parent 63d9a9b3d5
commit a596bcb11d
1 changed files with 11 additions and 8 deletions

View File

@ -201,8 +201,6 @@ func New(nodeKey string, fleet string, cfg *Config, logger *zap.Logger, appDB *s
sendQueue: make(chan *protocol.Envelope, 1000),
connStatusChan: make(chan node.ConnStatus, 100),
connStatusSubscriptions: make(map[string]*types.ConnStatusSubscription),
quit: make(chan struct{}),
connectionChanged: make(chan struct{}),
wg: sync.WaitGroup{},
dnsAddressCache: make(map[string][]dnsdisc.DiscoveredNode),
dnsAddressCacheLock: &sync.RWMutex{},
@ -230,7 +228,6 @@ func New(nodeKey string, fleet string, cfg *Config, logger *zap.Logger, appDB *s
waku.filters = common.NewFilters()
waku.bandwidthCounter = metrics.NewBandwidthCounter()
waku.filterMsgChannel = make(chan *protocol.Envelope, 1024)
var privateKey *ecdsa.PrivateKey
if nodeKey != "" {
@ -646,13 +643,15 @@ func (w *Waku) runFilterMsgLoop() {
select {
case <-w.quit:
return
case env := <-w.filterMsgChannel:
case env, ok := <-w.filterMsgChannel:
if ok {
envelopeErrors, err := w.OnNewEnvelopes(env, common.RelayedMessageType)
// TODO: should these be handled?
_ = envelopeErrors
_ = err
}
}
}
}
func (w *Waku) subscribeWakuFilterTopic(topics [][]byte) {
@ -1133,6 +1132,10 @@ func (w *Waku) Start() error {
w.identifyService = idService
w.quit = make(chan struct{})
w.filterMsgChannel = make(chan *protocol.Envelope, 1024)
w.connectionChanged = make(chan struct{})
ctx := context.Background()
if err = w.node.Start(ctx); err != nil {
return fmt.Errorf("failed to start go-waku node: %v", err)