@trigger.dev/redis-worker 0.0.0-process-keep-alive-20250623153513 → 0.0.0-process-keep-alive-20250626135929
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 +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -9664,6 +9664,11 @@ var SimpleQueue = class {
|
|
|
9664
9664
|
}
|
|
9665
9665
|
async moveToDeadLetterQueue(id, errorMessage) {
|
|
9666
9666
|
try {
|
|
9667
|
+
this.logger.debug(`SimpleQueue ${this.name}.moveToDeadLetterQueue(): moving item to DLQ`, {
|
|
9668
|
+
queue: this.name,
|
|
9669
|
+
id,
|
|
9670
|
+
errorMessage
|
|
9671
|
+
});
|
|
9667
9672
|
const result = await this.redis.moveToDeadLetterQueue(
|
|
9668
9673
|
`queue`,
|
|
9669
9674
|
`items`,
|
|
@@ -11354,7 +11359,7 @@ var Worker = class _Worker {
|
|
|
11354
11359
|
await _Worker.delay(pollIntervalMs);
|
|
11355
11360
|
continue;
|
|
11356
11361
|
}
|
|
11357
|
-
this.logger.
|
|
11362
|
+
this.logger.debug("Dequeued items", {
|
|
11358
11363
|
workerId,
|
|
11359
11364
|
itemCount: items.length,
|
|
11360
11365
|
concurrencyOptions: this.concurrency,
|