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