ronomon-queue
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "ronomon-queue", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Process thousands of asynchronous or synchronous jobs, concurrently or sequentially, safely and efficiently, without creating thousands of closures.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -225,3 +225,3 @@ var Queue = require('./index.js'); | ||
function callPush() { | ||
if (calls++ > 100 || random() < 0.1) { | ||
if (calls++ > 200 || random() < 0.05) { | ||
setTimeout(push, Math.round(random() * 2)); | ||
@@ -304,3 +304,3 @@ } else { | ||
}, | ||
1000 | ||
2000 | ||
); | ||
@@ -307,0 +307,0 @@ return; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19364