sm
/
cache
1
0
Fork 0

Fix leaking the janitor ticker when shutting down

This commit is contained in:
Fabian Ruff 2015-10-13 12:55:54 +02:00
parent 93d85800f2
commit fe045e4040
1 changed files with 3 additions and 2 deletions

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
}
}