nestjs-power-queues 1.0.32 → 1.0.34

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/dist/index.cjs CHANGED
@@ -58,7 +58,7 @@ var _QueueService = class _QueueService extends import_power_queues.PowerQueues
58
58
  await this.runQueue(this.queueName());
59
59
  }
60
60
  } else {
61
- setTimeout(this.init, 5e3);
61
+ setTimeout(() => this.init(), 5e3);
62
62
  }
63
63
  }
64
64
  async onModuleInit() {
package/dist/index.js CHANGED
@@ -32,7 +32,7 @@ var _QueueService = class _QueueService extends PowerQueues {
32
32
  await this.runQueue(this.queueName());
33
33
  }
34
34
  } else {
35
- setTimeout(this.init, 5e3);
35
+ setTimeout(() => this.init(), 5e3);
36
36
  }
37
37
  }
38
38
  async onModuleInit() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestjs-power-queues",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "High-performance Redis Streams queue integration for NestJS based on power-queues.",
5
5
  "author": "ihor-bielchenko",
6
6
  "license": "MIT",
@@ -87,7 +87,7 @@
87
87
  "dependencies": {
88
88
  "@nestjs-labs/nestjs-ioredis": "^11.0.4",
89
89
  "@nestjs/common": "^11.1.8",
90
- "nestjs-power-redis": "^1.0.17",
91
- "power-queues": "^2.1.14"
90
+ "nestjs-power-redis": "^1.0.18",
91
+ "power-queues": "^2.1.15"
92
92
  }
93
93
  }