koinos / koinos-p2p

The p2p microservice orchestrates the distribution of blocks and transactions between peers.
MIT License
6 stars 4 forks source link

Correctly clean up gossip tracking goroutine when gossip is disabled #265

Closed mvandeberg closed 1 year ago

mvandeberg commented 1 year ago

Brief description

The go routine that logs gossip summaries does not exit when gossip is toggled off, but a new one is created every time Gossip is toggled back on. This PR cancels the go routine when gossip is toggled off so that only one copy of the routine is running at a time.

Checklist

Demonstration