From 33412782ed828c68cd2641b4cff3bca130939698 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Fri, 18 Nov 2016 09:11:19 -0700 Subject: [PATCH] Fix go vet issue. --- tsdb/index/tsi1/series_block.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsdb/index/tsi1/series_block.go b/tsdb/index/tsi1/series_block.go index f9d4b197e4..72c525c001 100644 --- a/tsdb/index/tsi1/series_block.go +++ b/tsdb/index/tsi1/series_block.go @@ -50,8 +50,9 @@ type SeriesBlock struct { // Series returns a series element. func (blk *SeriesBlock) Series(name []byte, tags models.Tags) SeriesElem { - panic("TODO: Add hashmap to series block") - panic("TODO: Lookup series by hashmap") + // panic("TODO: Add hashmap to series block") + // panic("TODO: Lookup series by hashmap") + return nil } // SeriesOffset returns offset of the encoded series key.