Ed Burroughes
03/27/2023, 3:16 PM@task(result=PrefectResult())
def return_results(table_name):
return {"table_name": table_name)
2. Running the task no matter the upstream state using trigger=all_finished:
@task(result=PrefectResult(), trigger=all_finished)
def return_results(table_name):
return {"table_name": table_name)
Can anyone point me in the right direction to the equivalent Prefect 2 features, thank you 🙂