@workglow/task-graph 0.0.104 → 0.0.105

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/bun.js CHANGED
@@ -2279,13 +2279,24 @@ class TaskGraphRunner {
2279
2279
  const dataflows = this.graph.getTargetDataflows(node.id);
2280
2280
  for (const dataflow of dataflows) {
2281
2281
  const compatibility = dataflow.semanticallyCompatible(this.graph, dataflow);
2282
+ getLogger3().debug("pushOutputFromNodeToEdges", {
2283
+ dataflowId: dataflow.id,
2284
+ compatibility,
2285
+ resultsKeys: Object.keys(results)
2286
+ });
2282
2287
  if (compatibility === "static") {
2283
2288
  dataflow.setPortData(results);
2284
2289
  } else if (compatibility === "runtime") {
2285
2290
  const task = this.graph.getTask(dataflow.targetTaskId);
2286
2291
  const narrowed = await task.narrowInput({ ...results }, this.registry);
2287
2292
  dataflow.setPortData(narrowed);
2288
- } else {}
2293
+ } else {
2294
+ getLogger3().warn("pushOutputFromNodeToEdges", {
2295
+ dataflowId: dataflow.id,
2296
+ compatibility,
2297
+ resultsKeys: Object.keys(results)
2298
+ });
2299
+ }
2289
2300
  }
2290
2301
  }
2291
2302
  pushStatusFromNodeToEdges(graph, node, status) {
@@ -6195,4 +6206,4 @@ export {
6195
6206
  ConditionalTask
6196
6207
  };
6197
6208
 
6198
- //# debugId=AA716C41A75EE12C64756E2164756E21
6209
+ //# debugId=8EA5D80CC8C0A35064756E2164756E21