@deenruv/job-queue-plugin 1.0.6 → 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -27,7 +27,7 @@ const config = {
27
27
  BullMQJobQueuePlugin.init({
28
28
  connection: {
29
29
  host: 'localhost',
30
- port: 6379,
30
+ port: 60379,
31
31
  },
32
32
  workerOptions: {
33
33
  concurrency: 10,
@@ -41,7 +41,7 @@ const config = {
41
41
 
42
42
  | Option | Type | Default | Description |
43
43
  |--------|------|---------|-------------|
44
- | `connection` | `ConnectionOptions` | `127.0.0.1:6379` | Redis connection options |
44
+ | `connection` | `ConnectionOptions` | `127.0.0.1:60379` | Redis connection options |
45
45
  | `queueOptions` | `QueueOptions` | - | BullMQ Queue instance options |
46
46
  | `workerOptions` | `WorkerOptions` | `{ concurrency: 3 }` | BullMQ Worker instance options |
47
47
  | `setRetries` | `fn(queueName, job) => number` | - | Override retry count per queue/job |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deenruv/job-queue-plugin",
3
- "version": "1.0.6",
3
+ "version": "1.0.10",
4
4
  "license": "MIT",
5
5
  "main": "package/index.js",
6
6
  "types": "package/index.d.ts",
@@ -23,8 +23,8 @@
23
23
  "rimraf": "^5.0.5",
24
24
  "rxjs": "7.8.1",
25
25
  "typescript": "5.3.3",
26
- "@deenruv/core": "^1.0.6",
27
- "@deenruv/common": "^1.0.6"
26
+ "@deenruv/core": "^1.0.10",
27
+ "@deenruv/common": "^1.0.10"
28
28
  },
29
29
  "dependencies": {
30
30
  "@nestjs/common": "^10.3.10",