Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dspasibenko committed Mar 18, 2024
1 parent 716a0f3 commit abc0513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/riterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (ri *rIterator) fillBuf() error {
q.Limit = min(100, ri.baseQuery.Limit)
q.StartID = ri.nextID
ri.buf = nil
mr, err := ri.ls.QueryRecords(ri.ctx, q)
mr, _, err := ri.ls.QueryRecords(ri.ctx, q)
if err != nil {
ri.cf(err) // cancel the context ctx
ri.eof = true
Expand Down

0 comments on commit abc0513

Please sign in to comment.