Skip to content

Commit

Permalink
Call visit explicitly.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeschkies committed Nov 10, 2023
1 parent 1c1f65b commit 9894050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/logql/serialize.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (v *JSONSerializer) VisitRangeAggregation(e *syntax.RangeAggregationExpr) {

v.WriteMore()
v.WriteObjectField("range")
syntax.Dispatch(e.Left, v) //nolint:errcheck
v.VisitLogRange(e.Left)
v.WriteObjectEnd()
v.Flush()
}
Expand Down

0 comments on commit 9894050

Please sign in to comment.