Fix leak of ticker in remote storage queue manager.

This commit is contained in:
Brian Brazil 2017-10-09 17:36:20 +01:00
parent 5ee07b3b3a
commit 73dc96e7f5
2 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,6 @@ endif
STATICCHECK_IGNORE = \
github.com/prometheus/prometheus/discovery/kubernetes/node.go:SA1019 \
github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_adapter/main.go:SA1019 \
github.com/prometheus/prometheus/storage/remote/queue_manager.go:SA1015 \
github.com/prometheus/prometheus/pkg/textparse/lex.l.go:SA4006 \
github.com/prometheus/prometheus/pkg/pool/pool.go:SA6002 \
github.com/prometheus/prometheus/promql/engine.go:SA6002 \

View file

@ -293,10 +293,11 @@ func (t *QueueManager) Stop() {
func (t *QueueManager) updateShardsLoop() {
defer t.wg.Done()
ticker := time.Tick(shardUpdateDuration)
ticker := time.NewTicker(shardUpdateDuration)
defer ticker.Stop()
for {
select {
case <-ticker:
case <-ticker.C:
t.calculateDesiredShards()
case <-t.quit:
return