@sentio/runtime 2.59.0-rc.42 → 2.59.0-rc.43

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.
@@ -26336,10 +26336,15 @@ var ServiceManager = class extends ProcessorServiceImpl {
26336
26336
  this.contexts.delete(processId);
26337
26337
  }
26338
26338
  });
26339
- await this.pool.run(
26340
- { request: request3, workerPort: context2.workerPort, processId },
26341
- { transferList: [context2.workerPort] }
26342
- );
26339
+ try {
26340
+ await this.pool.run(
26341
+ { request: request3, workerPort: context2.workerPort, processId },
26342
+ { transferList: [context2.workerPort] }
26343
+ );
26344
+ } catch (err) {
26345
+ console.error("Error processing request:", err);
26346
+ subject.error(err);
26347
+ }
26343
26348
  } else {
26344
26349
  const context2 = this.contexts.get(processId);
26345
26350
  if (!context2) {