Skip to content

Commit

Permalink
store: added a log error print when proxy limit are violated
Browse files Browse the repository at this point in the history
  • Loading branch information
tizki committed Sep 2, 2024
1 parent acf423d commit b5d6056
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/store/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ func (s *ProxyStore) Series(originalRequest *storepb.SeriesRequest, srv storepb.
}

if err := srv.Send(resp); err != nil {
level.Error(reqLogger).Log("msg", errors.Wrap(err, "send series response").Error())
return status.Error(codes.Unknown, errors.Wrap(err, "send series response").Error())
}
}
Expand Down

0 comments on commit b5d6056

Please sign in to comment.