From 8d1d5c38505897356075effc5a219f4f2be28a79 Mon Sep 17 00:00:00 2001 From: Fernando Celmer Date: Mon, 6 Apr 2026 18:20:41 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=B2=20BUG-#127:=20Fix=20workflow=5Fid?= =?UTF-8?q?=3DNone=20passed=20to=20execution=20engine=20instead=20of=20gen?= =?UTF-8?q?erated=20UUID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dotflow/core/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotflow/core/workflow.py b/dotflow/core/workflow.py index 5e7b9bab..a9ee6a3c 100644 --- a/dotflow/core/workflow.py +++ b/dotflow/core/workflow.py @@ -114,7 +114,7 @@ def __init__( self.tasks = execution( tasks=tasks, - workflow_id=workflow_id, + workflow_id=self.workflow_id, ignore=keep_going, groups=groups, resume=resume,