@falcondev-oss/workflow 0.8.3 → 0.8.4

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/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -9754,7 +9754,7 @@ var Workflow = class {
9754
9754
  Settings.logger?.info?.(`[${this.opts.id}] Job ${job.id} failed`);
9755
9755
  });
9756
9756
  worker.on("error", (error) => {
9757
- Settings.logger?.error?.(`[${this.opts.id}] Error during worker startup:`, error);
9757
+ Settings.logger?.error?.(`[${this.opts.id}] Job error:`, error);
9758
9758
  });
9759
9759
  Settings.logger?.info?.(`[${this.opts.id}] Worker started`);
9760
9760
  const metricsOpts = opts?.metrics ?? this.opts.workerOptions?.metrics ?? Settings.metrics;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@falcondev-oss/workflow",
3
3
  "type": "module",
4
- "version": "0.8.3",
4
+ "version": "0.8.4",
5
5
  "description": "Simple type-safe queue worker with durable execution using Redis.",
6
6
  "license": "MIT",
7
7
  "repository": "github:falcondev-oss/workflow",