Skip to content

Commit

Permalink
pkg/querier: fix dropped error (#2671)
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Lehtonen <lars.lehtonen@gmail.com>
  • Loading branch information
alrs authored Sep 25, 2020
1 parent 6053cdb commit 0c9f7a5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/querier/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ func (q *Querier) Tail(ctx context.Context, req *logproto.TailRequest) (*Tailer,
defer cancelQuery()

tailClients, err := q.ingesterQuerier.Tail(tailCtx, req)
if err != nil {
return nil, err
}

histIterators, err := q.SelectLogs(queryCtx, histReq)
if err != nil {
Expand Down

0 comments on commit 0c9f7a5

Please sign in to comment.