https://prefect.io logo
Title
r

Rafał Bielicki

03/17/2023, 9:28 AM
Prefect 2.7.10 Hi everyone! I am experiencing very strange issue. My one of my flows consists of one task. Lets say
@task(persist_result=True)
def task():
    ...

@flow(persist_result=True)
def flow():
    task()
As you can see the task is called synchronously and I don’t get any results back. But I keep getting.
State message: Flow run encountered an exception. MissingResult: State data is missing. Typically, this occurs when result persistence is disabled and the state has been retrieved from the API.
1
Did anyone get this?