Hi there, Does anyone know how I can directly read...
# ask-community
t
Hi there, Does anyone know how I can directly read persisted results from storage? I tried the following:
Copy code
from prefect import flow
from prefect.results import get_result_store


@flow(persist_result=True)
def pipeline():
    store = get_result_store()
    result = store.read("my-key")  # Where I know that a file corresponding to this key exists on disk
    return result


if __name__ == "__main__":
    pipeline()
But I get the following error.
c
Hi Theom - I will respond on the discussion you started but I think this problem is resolved on 3.2.14 which is being released momentarily
t
Thanks @Chris White, I will respond in the discussion.
👍 1