Skip to content

Commit

Permalink
pkg/store/proxy.go: optimize help info (#2096)
Browse files Browse the repository at this point in the history
Signed-off-by: Xiang Dai <764524258@qq.com>
  • Loading branch information
daixiang0 authored Feb 7, 2020
1 parent d500d70 commit f034581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/store/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func (s *ProxyStore) Series(r *storepb.SeriesRequest, srv storepb.Store_SeriesSe
level.Debug(s.logger).Log("msg", strings.Join(storeDebugMsgs, ";"))
if len(seriesSet) == 0 {
// This is indicates that configured StoreAPIs are not the ones end user expects.
err := errors.New("No store matched for this query")
err := errors.New("No StoreAPIs matched for this query")
level.Warn(s.logger).Log("err", err, "stores", strings.Join(storeDebugMsgs, ";"))
respSender.send(storepb.NewWarnSeriesResponse(err))
return nil
Expand Down

0 comments on commit f034581

Please sign in to comment.