Skip to content

Commit

Permalink
removes unused ctx arg
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-d committed Mar 24, 2020
1 parent 55d41b9 commit 3bf5df1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/logql/evaluator.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func (ev *defaultEvaluator) StepEvaluator(
if err != nil {
return nil, err
}
return rangeAggEvaluator(ctx, entryIter, e, q)
return rangeAggEvaluator(entryIter, e, q)
case *binOpExpr:
return binOpStepEvaluator(ctx, nextEv, e, q)
default:
Expand Down Expand Up @@ -331,7 +331,6 @@ func vectorAggEvaluator(
}

func rangeAggEvaluator(
ctx context.Context,
entryIter iter.EntryIterator,
expr *rangeAggregationExpr,
q Params,
Expand Down

0 comments on commit 3bf5df1

Please sign in to comment.