Skip to content

Commit

Permalink
fix maxRec metric
Browse files Browse the repository at this point in the history
  • Loading branch information
loicalleyne committed Oct 13, 2023
1 parent 138dd73 commit 060b375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/arrow/avro/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (r *OCFReader) Next() bool {
r.maxOCF = len(r.avroChan)
}
if r.maxRec < len(r.recChan) {
r.maxRec = len(r.avroChan)
r.maxRec = len(r.recChan)
}
select {
case r.cur = <-r.recChan:
Expand Down

0 comments on commit 060b375

Please sign in to comment.