Skip to content

Commit

Permalink
force async
Browse files Browse the repository at this point in the history
  • Loading branch information
zzstoatzz committed Nov 15, 2024
1 parent 4eb7b5c commit b0ae91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prefect/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ async def update_for_task(self: Self, task: "Task") -> Self:
and update.get("result_storage") is None
or (self.result_storage and self.result_storage.basepath is None)
):
update["result_storage"] = await get_default_result_storage()
update["result_storage"] = await get_default_result_storage(_sync=False)
if (
isinstance(self.metadata_storage, NullFileSystem)
and update.get("metadata_storage", NotSet) is NotSet
Expand Down

0 comments on commit b0ae91d

Please sign in to comment.