https://prefect.io logo
s

sark

09/25/2020, 9:06 AM
hi guys is it possible to have a task have both data and non-data dependencies?
upstream_tasks=[upstream_task]
only seems to work when there are no data-dependencies?
e

emre

09/25/2020, 12:36 PM
Thats odd, I have used it before as such:
SomeTask()(param=data, upstream_tasks=[a, b])
Maybe a code snippet could help us find the issue?
upvote 3
s

sark

09/28/2020, 3:27 AM
ah yes i got confused again between parameters for the initialisation of the task and the flow run-time parameters for the task
sorry!