@cadenza.io/core 3.0.10 → 3.0.12
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.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -723,6 +723,9 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
723
723
|
this.splitGroupId = routineExecId;
|
|
724
724
|
this.debug = debug;
|
|
725
725
|
this.verbose = verbose;
|
|
726
|
+
if (!this.task || !this.task.validateInput) {
|
|
727
|
+
console.log("task not found", this.task, this.context);
|
|
728
|
+
}
|
|
726
729
|
}
|
|
727
730
|
setDebug(value) {
|
|
728
731
|
this.debug = value;
|
|
@@ -2467,6 +2470,7 @@ var GraphRunner = class extends SignalEmitter {
|
|
|
2467
2470
|
var _a;
|
|
2468
2471
|
if (context.__task || context.__routine) {
|
|
2469
2472
|
const routine = (_a = context.__task) != null ? _a : context.__routine;
|
|
2473
|
+
console.log("starting routine", routine, context);
|
|
2470
2474
|
this.run(routine, context);
|
|
2471
2475
|
return true;
|
|
2472
2476
|
} else {
|