bored-needle-72209
01/26/2024, 2:17 PMexec = remote.fetch_execution(project, domain, execution_name)
Retrieve the ID of the dynamic node execution:
dynamic_node_exec_id = remote.client.list_node_executions(exec.id)[0][3].id
Obtain the ID of the dynamic task execution:
dynamic_task_id = remote.client.list_task_executions_paginated(dynamic_node_exec_id)[0][0].id
Attempt to list node executions for the task, but I get an empty list:
spawned_nodes = remote.client.list_node_executions_for_task_paginated(dynamic_task_id)
What is the problem with my approach and how is it supposed to work? Any help is appreciated!tall-lock-23197
user
01/29/2024, 5:50 AMbored-needle-72209
01/29/2024, 9:35 AMtall-lock-23197
bored-needle-72209
03/18/2024, 10:43 AM