Skip to content
This repository has been archived by the owner on Jul 27, 2021. It is now read-only.

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchoz49 committed May 20, 2020
1 parent 1cce703 commit 3b68da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/create-read-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function createReadStream (feed, opts = {}) {
var end = typeof opts.end === 'number' ? opts.end : -1;
var live = !!opts.live;
var snapshot = opts.snapshot !== false;
var batch = opts.batch || 1;
var batch = opts.batch || 100;
var batchEnd = 0;
var batchLimit = 0;

Expand Down

0 comments on commit 3b68da3

Please sign in to comment.