juana
05/31/2023, 12:55 AMTypeError: task() got an unexpected keyword argument 'result_storage_key'
. I'm using Prefect version 2.8.2.Nate
06/01/2023, 6:38 PMresult_storage_key
to the task's function instead of the task decorator itself. you should be able to pass it like
@task(result_storage_key="foo.json")
def foo():
pass