Paulo Maia
09/03/2021, 10:44 AMexecution_id = task_run_inference()
task_decision_process(execution_id, config, upstream_tasks=[task_run_inference])
task_append_to_m2m(execution_id, config, upstream_tasks=[task_decision_process])
task_append_to_m2r(execution_id, config, upstream_tasks=[task_decision_process])
task_run_inference_cleanup(execution_id, config, upstream_tasks=[task_append_to_m2r, task_append_to_m2m])
This is returning a weird dependency plot where task_run_inference is pointing to task_append_to_m2r. Do I need to explicitly set all tasks as upstream? wont this create a dependency between them?Amanda Wee
09/03/2021, 10:50 AMexecution_id = task_run_inference()
t2 = task_decision_process(execution_id, config)
t3 = task_append_to_m2m(execution_id, config, upstream_tasks=[t2])
t4 = task_append_to_m2r(execution_id, config, upstream_tasks=[t3])
task_run_inference_cleanup(execution_id, config, upstream_tasks=[t4])
Paulo Maia
09/03/2021, 10:51 AMPaulo Maia
09/03/2021, 10:51 AMAmanda Wee
09/03/2021, 10:52 AMPaulo Maia
09/03/2021, 10:55 AMPaulo Maia
09/03/2021, 11:05 AM