ac-bootstrap-bull 1.0.8 → 1.0.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/index.js +2 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ <a name="1.0.9"></a>
2
+
3
+ ## [1.0.9](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.8..v1.0.9) (2022-05-10 10:04:47)
4
+
5
+
6
+ ### Bug Fix
7
+
8
+ * **App:** Make enableAutoPipelining the default behaviour | MP | [2dbb401619da28329efb248c45f90b24ed79c8d6](https://github.com/admiralcloud/ac-bootstrap-bull/commit/2dbb401619da28329efb248c45f90b24ed79c8d6)
9
+ Enable enableAutoPipelining for Redis per default
10
+ Related issues: [/issues#undefined](https://github.com//issues/undefined)
1
11
  <a name="1.0.8"></a>
2
12
 
3
13
  ## [1.0.8](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.7..v1.0.8) (2022-04-29 12:15:13)
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: true
51
52
  }
52
53
 
53
54
  if (acapi.config.localRedis) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac-bootstrap-bull",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Bull helper",
5
5
  "repository": "admiralcloud/ac-bootstrap-bull",
6
6
  "author": "Mark Poepping <mark.poepping@admiralcloud.com>",