Skip to content

Commit

Permalink
Merge pull request #25 from donflopez/OPEX-527_b
Browse files Browse the repository at this point in the history
[OPEX-527] Remove another batch size hard limit
  • Loading branch information
donflopez authored Jul 24, 2019
2 parents f41dcd5 + a633f03 commit bc7cd1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0-log-extension-tools",
"version": "1.3.7",
"version": "1.3.8",
"description": "A set of tools for logging",
"main": "src/index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ LogsApiStream.prototype.done = function() {
LogsApiStream.prototype.next = function(take) {
const self = this;
const logger = this.options.logger;
const perPage = (!self.options.types || !self.options.types.length) ? take : 100;
const perPage = take;

if (self.remaining < 1) {
self.status.warning = 'Auth0 Management API rate limit reached.';
Expand Down

0 comments on commit bc7cd1c

Please sign in to comment.