Comparing version 3.29.0 to 3.29.1
@@ -0,1 +1,8 @@ | ||
## [3.29.1](https://github.com/OptimalBits/bull/compare/v3.29.0...v3.29.1) (2021-08-26) | ||
### Bug Fixes | ||
* protect getJob with isReady, fixes [#1386](https://github.com/OptimalBits/bull/issues/1386) ([2f27faa](https://github.com/OptimalBits/bull/commit/2f27faa410f70504f24df2ebd6bb7831df21660d)) | ||
# [3.29.0](https://github.com/OptimalBits/bull/compare/v3.28.1...v3.29.0) (2021-08-20) | ||
@@ -2,0 +9,0 @@ |
@@ -7,3 +7,4 @@ 'use strict'; | ||
module.exports = function(Queue) { | ||
Queue.prototype.getJob = function(jobId) { | ||
Queue.prototype.getJob = async function(jobId) { | ||
await this.isReady(); | ||
return Job.fromId(this, jobId); | ||
@@ -10,0 +11,0 @@ }; |
@@ -596,10 +596,2 @@ 'use strict'; | ||
Deprecate in favor of: | ||
/* | ||
queue.work('export', opts, function(job, input){ | ||
return output; | ||
}, 'adrapid-export-results'); | ||
@method process | ||
@@ -606,0 +598,0 @@ */ |
{ | ||
"name": "bull", | ||
"version": "3.29.0", | ||
"version": "3.29.1", | ||
"description": "Job manager", | ||
@@ -5,0 +5,0 @@ "engines": { |
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
173334
3266