From fc2f1f697ac835ef8057e2398ea156803a5b0a39 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Wed, 12 Mar 2025 11:35:47 +0100 Subject: [PATCH 1/2] Fix bug in simple workflow --- workflow_simple.json | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/workflow_simple.json b/workflow_simple.json index 1bde53d..07acf41 100644 --- a/workflow_simple.json +++ b/workflow_simple.json @@ -1,21 +1,15 @@ { "nodes": { - "0": "simple_workflow.add_x_and_y_and_z", - "1": "simple_workflow.add_x_and_y", - "2": "simple_workflow.add_x_and_y", - "3": "simple_workflow.add_x_and_y", - "4": 1, - "5": 2 - }, + "0": "simple_workflow.add_x_and_y", + "1": "simple_workflow.add_x_and_y_and_z", + "2": 1, + "3": 2, + }, "edges": [ - {"target": 0, "targetHandle": "x", "source": 1, "sourceHandle": "x"}, - {"target": 1, "targetHandle": "x", "source": 4, "sourceHandle": null}, - {"target": 1, "targetHandle": "y", "source": 5, "sourceHandle": null}, - {"target": 0, "targetHandle": "y", "source": 2, "sourceHandle": "y"}, - {"target": 2, "targetHandle": "x", "source": 4, "sourceHandle": null}, - {"target": 2, "targetHandle": "y", "source": 5, "sourceHandle": null}, - {"target": 0, "targetHandle": "z", "source": 3, "sourceHandle": "z"}, - {"target": 3, "targetHandle": "x", "source": 4, "sourceHandle": null}, - {"target": 3, "targetHandle": "y", "source": 5, "sourceHandle": null} + {"target": 0, "targetHandle": "x", "source": 2, "sourceHandle": null}, + {"target": 0, "targetHandle": "y", "source": 3, "sourceHandle": null}, + {"target": 1, "targetHandle": "x", "source": 0, "sourceHandle": "x"}, + {"target": 1, "targetHandle": "y", "source": 0, "sourceHandle": "y"}, + {"target": 1, "targetHandle": "z", "source": 0, "sourceHandle": "z"} ] -} \ No newline at end of file +} From 012804559a0405d192de5e09ccd3c7eca06ccd47 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Wed, 12 Mar 2025 11:39:41 +0100 Subject: [PATCH 2/2] Update workflow_simple.json --- workflow_simple.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow_simple.json b/workflow_simple.json index 07acf41..0690b2b 100644 --- a/workflow_simple.json +++ b/workflow_simple.json @@ -3,7 +3,7 @@ "0": "simple_workflow.add_x_and_y", "1": "simple_workflow.add_x_and_y_and_z", "2": 1, - "3": 2, + "3": 2 }, "edges": [ {"target": 0, "targetHandle": "x", "source": 2, "sourceHandle": null},