diff --git a/storage/local/storage.go b/storage/local/storage.go index e8039faa0..c1caef67e 100644 --- a/storage/local/storage.go +++ b/storage/local/storage.go @@ -999,7 +999,10 @@ func (s *MemorySeriesStorage) logThrottling() { select { case <-s.throttled: if !timer.Stop() { - <-timer.C + select { + case <-timer.C: + default: + } score, _ := s.getPersistenceUrgencyScore() log. With("urgencyScore", score).