Merge pull request #320 from prometheus/optimize/no-wm-too-old

Always treat series without watermarks as too old.
pull/326/head
Matt T. Proud 12 years ago
commit ad656ba58d

@ -343,7 +343,8 @@ func (t *TieredStorage) seriesTooOld(f *clientmodel.Fingerprint, i time.Time) (b
return wmTime.Before(i), nil
}
return false, nil
t.wmCache.Set(f, &watermarks{})
return true, nil
}
return wm.High.Before(i), nil

Loading…
Cancel
Save