2
0

Merge pull request #23 from databus23/patch-1

Fix leaking the janitor ticker when shutting down
This commit is contained in:
Patrick Mylund Nielsen
2015-10-13 08:21:26 -04:00
+3 -2
View File
@@ -941,12 +941,13 @@ type janitor struct {
func (j *janitor) Run(c *cache) {
j.stop = make(chan bool)
tick := time.Tick(j.Interval)
ticker := time.NewTicker(j.Interval)
for {
select {
case <-tick:
case <-ticker.C:
c.DeleteExpired()
case <-j.stop:
ticker.Stop()
return
}
}