Browse Source

chanfitness/chaneventstore: stop ticker after goroutine

Stop the ticker after the goroutine reading from it has exited, to avoid
triggering the race detector.
master
Johan T. Halseth 4 years ago
parent
commit
c1705a28da
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26
  1. 7
      chanfitness/chaneventstore.go

7
chanfitness/chaneventstore.go

@ -203,12 +203,13 @@ func (c *ChannelEventStore) Start() error {
func (c *ChannelEventStore) Stop() {
log.Info("Stopping event store")
c.cfg.FlapCountTicker.Stop()
// Stop the consume goroutine.
close(c.quit)
c.wg.Wait()
// Stop the ticker after the goroutine reading from it has exited, to
// avoid a race.
c.cfg.FlapCountTicker.Stop()
}
// addChannel checks whether we are already tracking a channel's peer, creates a

Loading…
Cancel
Save