lib/storage: correctly handle io.EOF error for pre-fetched metrics (#3946)

io.EOF shouldn't be returned from this function. It breaks all search
API logic and may result in empty query results.
This commit is contained in:
Nikolay 2023-03-12 08:29:43 +01:00 committed by Aliaksandr Valialkin
parent e9526e628d
commit b6a1372d23
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -1245,7 +1245,7 @@ func (s *Storage) prefetchMetricNames(qt *querytracer.Tracer, tsids []TSID, dead
}
}
})
if err != nil {
if err != nil && err != io.EOF {
return err
}
qt.Printf("pre-fetch metric names for %d metric ids", len(metricIDs))