Josh Paulin
10/14/2022, 5:54 PMNone
. Wondering if this is intentional. Minimal example in the thread.
Also found out I canโt downgrade from 2.6 to 2.5 because of what looks like some database migrations? Running prefect orion database reset -y
on a database with 2.5 after upgrading to 2.6 and it fails.@task()
def my_task():
return []
@flow()
def my_flow():
result = my_task()
print(result)
In 2.5 results == []
In 2.6 results is None
Zanie
10/14/2022, 5:57 PMJosh Paulin
10/14/2022, 5:59 PMZanie
10/14/2022, 6:01 PM@task(persist_result=True)
as well for a fix.Josh Paulin
10/14/2022, 7:13 PMLiz McCutcheon
10/20/2022, 3:09 PMZanie
10/20/2022, 3:12 PM