@sentio/runtime 2.59.0-rc.36 → 2.59.0-rc.38
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/lib/{chunk-OS67OWYG.js → chunk-C4IDZGJI.js} +13 -7
- package/lib/{chunk-OS67OWYG.js.map → chunk-C4IDZGJI.js.map} +1 -1
- package/lib/index.js +1 -1
- package/lib/processor-runner.js +3 -2
- package/lib/processor-runner.js.map +1 -1
- package/lib/service-worker.js +1 -1
- package/package.json +1 -1
- package/src/db-context.ts +2 -1
- package/src/service-manager.ts +2 -1
- package/src/utils.ts +13 -5
package/lib/index.js
CHANGED
package/lib/processor-runner.js
CHANGED
@@ -44,7 +44,7 @@ import {
|
|
44
44
|
require_lodash,
|
45
45
|
require_src,
|
46
46
|
trace
|
47
|
-
} from "./chunk-
|
47
|
+
} from "./chunk-C4IDZGJI.js";
|
48
48
|
import {
|
49
49
|
ExecutionConfig,
|
50
50
|
HandlerType,
|
@@ -26476,7 +26476,8 @@ var ChannelStoreContext = class {
|
|
26476
26476
|
this.mainPort.close();
|
26477
26477
|
}
|
26478
26478
|
error(processId, e) {
|
26479
|
-
|
26479
|
+
const stack = new Error().stack;
|
26480
|
+
console.error("process error", processId, e, stack);
|
26480
26481
|
const errorResult = ProcessResult.create({
|
26481
26482
|
states: {
|
26482
26483
|
error: e?.toString()
|