fix: Stop tickers
This commit is contained in:
parent
6f2f361cac
commit
8867f771d4
|
@ -34,6 +34,8 @@ func checkUpdates(curVersion string, interval time.Duration, app *App) {
|
||||||
curVersion = reSemver.ReplaceAllString(curVersion, "")
|
curVersion = reSemver.ReplaceAllString(curVersion, "")
|
||||||
time.Sleep(time.Second * 1)
|
time.Sleep(time.Second * 1)
|
||||||
ticker := time.NewTicker(interval)
|
ticker := time.NewTicker(interval)
|
||||||
|
defer ticker.Stop()
|
||||||
|
|
||||||
for ; true; <-ticker.C {
|
for ; true; <-ticker.C {
|
||||||
resp, err := http.Get(updateCheckURL)
|
resp, err := http.Get(updateCheckURL)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -348,6 +348,8 @@ func (m *Manager) Close() {
|
||||||
// for campaigns to process and dispatches them to the manager.
|
// for campaigns to process and dispatches them to the manager.
|
||||||
func (m *Manager) scanCampaigns(tick time.Duration) {
|
func (m *Manager) scanCampaigns(tick time.Duration) {
|
||||||
t := time.NewTicker(tick)
|
t := time.NewTicker(tick)
|
||||||
|
defer t.Stop()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
// Periodically scan the data source for campaigns to process.
|
// Periodically scan the data source for campaigns to process.
|
||||||
|
|
Loading…
Reference in New Issue