@bian-womp/spark-graph 0.3.5 → 0.3.6
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/cjs/index.cjs
CHANGED
|
@@ -1565,7 +1565,9 @@ class NodeExecutor {
|
|
|
1565
1565
|
// If autoRun is true, auto-generate a run context (similar to createExecutionContext pattern)
|
|
1566
1566
|
if (node.policy?.autoRun === true) {
|
|
1567
1567
|
runContextIds = new Set([
|
|
1568
|
-
this.runContextManager.createRunContext(nodeId),
|
|
1568
|
+
this.runContextManager.createRunContext(nodeId, () => { }, {
|
|
1569
|
+
propagate: false,
|
|
1570
|
+
}),
|
|
1569
1571
|
]);
|
|
1570
1572
|
}
|
|
1571
1573
|
else {
|