ac-bootstrap-bull 1.0.7 → 1.0.10
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 +30 -0
- package/index.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
<a name="1.0.10"></a>
|
|
2
|
+
|
|
3
|
+
## [1.0.10](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.9..v1.0.10) (2022-05-10 14:08:52)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fix
|
|
7
|
+
|
|
8
|
+
* **App:** enableAutoPipelining seems to create issues with Bull - therefore it now defaults to false | MP | [b41a1fecd3897bafb13cb18949067099253374f2](https://github.com/admiralcloud/ac-bootstrap-bull/commit/b41a1fecd3897bafb13cb18949067099253374f2)
|
|
9
|
+
Some jobs are not correctly processed if enableAutoPipelining is true. Therefore per default is now false.
|
|
10
|
+
Related issues: [/issues#undefined](https://github.com//issues/undefined)
|
|
11
|
+
<a name="1.0.9"></a>
|
|
12
|
+
|
|
13
|
+
## [1.0.9](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.8..v1.0.9) (2022-05-10 10:04:47)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fix
|
|
17
|
+
|
|
18
|
+
* **App:** Make enableAutoPipelining the default behaviour | MP | [2dbb401619da28329efb248c45f90b24ed79c8d6](https://github.com/admiralcloud/ac-bootstrap-bull/commit/2dbb401619da28329efb248c45f90b24ed79c8d6)
|
|
19
|
+
Enable enableAutoPipelining for Redis per default
|
|
20
|
+
Related issues: [/issues#undefined](https://github.com//issues/undefined)
|
|
21
|
+
<a name="1.0.8"></a>
|
|
22
|
+
|
|
23
|
+
## [1.0.8](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.7..v1.0.8) (2022-04-29 12:15:13)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fix
|
|
27
|
+
|
|
28
|
+
* **App:** Updated packages | MP | [78229f53df19c7e51d000e8aae91c621e06c4de4](https://github.com/admiralcloud/ac-bootstrap-bull/commit/78229f53df19c7e51d000e8aae91c621e06c4de4)
|
|
29
|
+
Updated ac-redisLock
|
|
30
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
1
31
|
<a name="1.0.7"></a>
|
|
2
32
|
|
|
3
33
|
## [1.0.7](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.6..v1.0.7) (2022-04-25 12:39:03)
|
package/index.js
CHANGED
|
@@ -47,7 +47,8 @@ module.exports = function(acapi) {
|
|
|
47
47
|
return delay
|
|
48
48
|
},
|
|
49
49
|
enableReadyCheck: false,
|
|
50
|
-
maxRetriesPerRequest: null
|
|
50
|
+
maxRetriesPerRequest: null,
|
|
51
|
+
enableAutoPipelining: _.get(acapi.config, 'bull.enableAutoPipelining', false)
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
if (acapi.config.localRedis) {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ac-bootstrap-bull",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
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
|
-
"ac-redislock": "^
|
|
9
|
+
"ac-redislock": "^2.0.0",
|
|
10
10
|
"async": "^3.2.3",
|
|
11
11
|
"bull": "^4.8.2",
|
|
12
12
|
"ioredis": "^5.0.4",
|