Remove series id check during deletion.

pull/9315/head
Ben Johnson 2018-01-14 14:53:01 -07:00 committed by Edd Robinson
parent 1c4ab05c7e
commit d295f30686
1 changed files with 1 additions and 1 deletions

View File

@ -1372,7 +1372,7 @@ func (e *Engine) deleteSeriesRange(seriesKeys [][]byte, min, max int64) error {
name, tags := models.ParseKey(k)
sid := e.sfile.SeriesID([]byte(name), tags, buf)
if sid == 0 {
return fmt.Errorf("unable to find id for series key %q during deletion", k)
continue
}
// This key was crossed out earlier, skip it