Merge pull request #23 from databus23/patch-1

Fix leaking the janitor ticker when shutting down
master
Patrick Mylund Nielsen 9 years ago
commit a122e14c4b

@ -941,12 +941,13 @@ type janitor struct {
func (j *janitor) Run(c *cache) { func (j *janitor) Run(c *cache) {
j.stop = make(chan bool) j.stop = make(chan bool)
tick := time.Tick(j.Interval) ticker := time.NewTicker(j.Interval)
for { for {
select { select {
case <-tick: case <-ticker.C:
c.DeleteExpired() c.DeleteExpired()
case <-j.stop: case <-j.stop:
ticker.Stop()
return return
} }
} }

Loading…
Cancel
Save