Matic Lubej
03/31/2021, 4:49 PMJim Crist-Harif
03/31/2021, 4:51 PMupstream_tasks
) are assumed to be iterables that are mapped over. Since strings are iterables, you're accidentally mapping over the output of task_3
. You probably want to do
task_4.map(list_of_ints_2, upstream_tasks=[unmapped(str_output)])
instead, where unmapped
is prefect.unmapped
.Matic Lubej
03/31/2021, 4:55 PM