ac-bootstrap-bull 1.0.3 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/index.js +4 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
<a name="1.0.6"></a>
|
|
2
|
+
|
|
3
|
+
## [1.0.6](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.5..v1.0.6) (2022-04-25 12:31:49)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fix
|
|
7
|
+
|
|
8
|
+
* **App:** Packages updated | MP | [c6fd26b4c7c7d023c4249a6f8308a28b9c42206f](https://github.com/admiralcloud/ac-bootstrap-bull/commit/c6fd26b4c7c7d023c4249a6f8308a28b9c42206f)
|
|
9
|
+
Packages updated
|
|
10
|
+
Related issues: [/issues#undefined](https://github.com//issues/undefined)
|
|
11
|
+
<a name="1.0.5"></a>
|
|
12
|
+
|
|
13
|
+
## [1.0.5](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.4..v1.0.5) (2022-01-14 20:54:15)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fix
|
|
17
|
+
|
|
18
|
+
* **App:** Package updates | MP | [e3ec60495085be2402f8356f964f26995fe1fda7](https://github.com/admiralcloud/ac-bootstrap-bull/commit/e3ec60495085be2402f8356f964f26995fe1fda7)
|
|
19
|
+
Package updates
|
|
20
|
+
<a name="1.0.4"></a>
|
|
21
|
+
|
|
22
|
+
## [1.0.4](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.3..v1.0.4) (2021-12-12 14:04:52)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fix
|
|
26
|
+
|
|
27
|
+
* **App:** Typo fix - processing with 2 s only | MP | [856d47dc8018f03a4aa2ac8aaade68239e2cd6b7](https://github.com/admiralcloud/ac-bootstrap-bull/commit/856d47dc8018f03a4aa2ac8aaade68239e2cd6b7)
|
|
28
|
+
Rename postProcesssing (3s) to postProcessing (2s)
|
|
29
|
+
### Chores
|
|
30
|
+
|
|
31
|
+
* **App:** Updated packages | MP | [d6ca1ef636269aee01b3a15c74f589e317a6f1c9](https://github.com/admiralcloud/ac-bootstrap-bull/commit/d6ca1ef636269aee01b3a15c74f589e317a6f1c9)
|
|
32
|
+
Updated packages
|
|
1
33
|
<a name="1.0.3"></a>
|
|
2
34
|
|
|
3
35
|
## [1.0.3](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.2..v1.0.3) (2021-11-27 07:46:38)
|
package/index.js
CHANGED
|
@@ -203,8 +203,8 @@ module.exports = function(acapi) {
|
|
|
203
203
|
})
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
const
|
|
207
|
-
const functionIdentifier = _.padEnd('
|
|
206
|
+
const postProcessing = function(params, cb) {
|
|
207
|
+
const functionIdentifier = _.padEnd('postProcessing', _.get(acapi.config, 'bull.log.functionIdentifierLength'))
|
|
208
208
|
const jobList = _.get(params, 'jobList')
|
|
209
209
|
const jobId = _.get(params, 'jobId')
|
|
210
210
|
const that = this
|
|
@@ -234,7 +234,7 @@ module.exports = function(acapi) {
|
|
|
234
234
|
})
|
|
235
235
|
})
|
|
236
236
|
}
|
|
237
|
-
const prepareProcessing =
|
|
237
|
+
const prepareProcessing = postProcessing
|
|
238
238
|
|
|
239
239
|
|
|
240
240
|
/**
|
|
@@ -253,7 +253,7 @@ module.exports = function(acapi) {
|
|
|
253
253
|
prepareQueue,
|
|
254
254
|
handleFailedJobs,
|
|
255
255
|
prepareProcessing, // deprecated - please use postProcessing instead
|
|
256
|
-
|
|
256
|
+
postProcessing,
|
|
257
257
|
addJob,
|
|
258
258
|
removeJob,
|
|
259
259
|
shutdown
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ac-bootstrap-bull",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Bull helper",
|
|
5
5
|
"repository": "admiralcloud/ac-bootstrap-bull",
|
|
6
6
|
"author": "Mark Poepping <mark.poepping@admiralcloud.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"ac-redislock": "^1.0.11",
|
|
10
|
-
"async": "^3.2.
|
|
11
|
-
"bull": "^4.
|
|
12
|
-
"ioredis": "^
|
|
10
|
+
"async": "^3.2.3",
|
|
11
|
+
"bull": "^4.8.2",
|
|
12
|
+
"ioredis": "^5.0.4",
|
|
13
13
|
"lodash": "^4.17.21"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"eslint": "^8.
|
|
16
|
+
"eslint": "^8.14.0"
|
|
17
17
|
}
|
|
18
18
|
}
|