Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "qyu", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "A general-purpose asynchronous job queue for Node.js", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -64,3 +64,3 @@ const | ||
catch (err) { | ||
current.deferred.resolve(err); | ||
current.deferred.reject(err); | ||
} | ||
@@ -115,3 +115,3 @@ } | ||
for (let i=freeSlots; i<jobObjects.length; ++i) { | ||
jobObjects[i].deferred.resolve( | ||
jobObjects[i].deferred.reject( | ||
new QyuError('ERR_CAPACITY_FULL', "Can't queue job, queue is at max capacity") | ||
@@ -118,0 +118,0 @@ ); |
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
8178
6