mirror of
https://github.com/tailscale/tailscale.git
synced 2024-12-04 23:45:34 +00:00
Ensure ticker stop
This commit is contained in:
parent
bfda034655
commit
fb13df273a
@ -169,8 +169,10 @@ func (p *Poller) Run(ctx context.Context) (chan Update, error) {
|
||||
return nil, fmt.Errorf("error initializing poller: %w", p.initErr)
|
||||
}
|
||||
tick := time.NewTicker(p.Interval)
|
||||
defer tick.Stop()
|
||||
go p.runWithTickChan(ctx, tick.C)
|
||||
go func() {
|
||||
defer tick.Stop()
|
||||
p.runWithTickChan(ctx, tick.C)
|
||||
}()
|
||||
return p.c, nil
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user