Skip to content

Commit

Permalink
fix typo in error messages (#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
polar3130 authored and rfratto committed Sep 19, 2019
1 parent 717e49e commit b2cd49a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/querier/tail.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,13 @@ func (t *Tailer) readTailClient(addr string, querierTailClient logproto.Querier_
for {
if t.stopped {
if err := querierTailClient.CloseSend(); err != nil {
level.Error(util.Logger).Log("Error closing gprc tail client", fmt.Sprintf("%v", err))
level.Error(util.Logger).Log("Error closing grpc tail client", fmt.Sprintf("%v", err))
}
break
}
resp, err = querierTailClient.Recv()
if err != nil {
level.Error(util.Logger).Log("Error receiving response from gprc tail client", fmt.Sprintf("%v", err))
level.Error(util.Logger).Log("Error receiving response from grpc tail client", fmt.Sprintf("%v", err))
break
}
t.pushTailResponseFromIngester(resp)
Expand Down

0 comments on commit b2cd49a

Please sign in to comment.