@powerhousedao/powerhouse-vetra-packages 6.2.2-staging.0 → 6.2.3-dev.0

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.
@@ -332,12 +332,10 @@ function runProjectionWorker(parentPort, overrides = {}) {
332
332
  case "init":
333
333
  handleInit(msg).catch((err) => {
334
334
  post({
335
- type: "log",
335
+ type: "init-failed",
336
+ correlationId: msg.correlationId,
336
337
  shardId,
337
- level: "error",
338
- message: "projection worker init failed",
339
- args: [errorToInfo(err)],
340
- timestamp: Date.now()
338
+ error: errorToInfo(err)
341
339
  });
342
340
  });
343
341
  break;