We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 861e47f commit 8a3bb3dCopy full SHA for 8a3bb3d
1 file changed
wfcommons/wfbench/translator/templates/swift_t_templates/workflow.swift
@@ -90,6 +90,7 @@ cpu_threads = int(10 * percent_cpu)
90
output_data = {"%s": int(%i)}
91
dep = %i
92
workflow_id = "%s"
93
+task_id = f"{workflow_id}_{task_name}"
94
95
if 'workflow_id':
96
logging.info("Running with Flowcept.")
@@ -98,7 +99,7 @@ if 'workflow_id':
98
99
bundle_exec_id=workflow_id,
100
start_persistence=False, save_workflow=False)
101
fc.start()
- fc_task = FlowceptTask(workflow_id=workflow_id, task_id=task_name, used={
102
+ fc_task = FlowceptTask(workflow_id=workflow_id, task_id=task_id, used={
103
'workflow_id': workflow_id,
104
'name': task_name,
105
'percent-cpu': percent_cpu,
0 commit comments