Prefect 2.7.10 Hi everyone! I am experiencing very...
# prefect-community
r
Prefect 2.7.10 Hi everyone! I am experiencing very strange issue. My one of my flows consists of one task. Lets say
Copy code
@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.
Copy code
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?