Skip to content

Commit

Permalink
store/bucket: wrap error
Browse files Browse the repository at this point in the history
  • Loading branch information
Giedrius Statkevičius committed Feb 4, 2019
1 parent eef3a65 commit 074d3be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/store/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie
for _, ref := range ps {
err := indexr.LoadedSeries(ref, &l, &chunksMeta)
if err != nil {
return err
return errors.Wrapf(err, "failed to load series")
}

for _, ch := range chunksMeta {
Expand Down

0 comments on commit 074d3be

Please sign in to comment.