From 86634fcd75f38c63d5b177f302453f5c2111f608 Mon Sep 17 00:00:00 2001 From: Vanshikav123 Date: Wed, 8 Jan 2025 23:53:58 +0530 Subject: [PATCH] removed comments Signed-off-by: Vanshikav123 --- storage/remote/read.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/storage/remote/read.go b/storage/remote/read.go index caa34c38ae..9013fc3b91 100644 --- a/storage/remote/read.go +++ b/storage/remote/read.go @@ -311,7 +311,6 @@ func mergeSeriesWithExemplars(ss storage.SeriesSet, exemplars []exemplar.QueryRe } } - // Wrap the original SeriesSet to inject exemplars into the series. return &seriesSetWithExemplars{ SeriesSet: ss, exemplarMap: exemplarMap, @@ -323,7 +322,6 @@ type seriesSetWithExemplars struct { exemplarMap map[uint64][]prompb.Exemplar } -// At returns a series with exemplars if they exist for the series' labels. func (sswe *seriesSetWithExemplars) At() storage.Series { series := sswe.SeriesSet.At() key := series.Labels().Hash()