Skip to content

Commit

Permalink
fix live tailing of logs from Loki (#3509)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepsukhani authored Mar 18, 2021
1 parent 14b2c09 commit b06d970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/querier/ingester_querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func (q *IngesterQuerier) TailersCount(ctx context.Context) ([]uint32, error) {
}

responses, err := q.forGivenIngesters(ctx, replicationSet, func(querierClient logproto.QuerierClient) (interface{}, error) {
resp, err := querierClient.TailersCount(ctx, nil)
resp, err := querierClient.TailersCount(ctx, &logproto.TailersCountRequest{})
if err != nil {
return nil, err
}
Expand Down

0 comments on commit b06d970

Please sign in to comment.