Hui Zheng
01/21/2021, 1:15 AMGCS_result
. It happened to flow runs on different agents and k8e clusters. I wonder if there is a Prefect-cloud infrastructure issue?Chris White
AttributeError("'Blob' object has no attribute 'download_as_bytes'")
which I believe is related to your local version of `google-cloud-storage`; here’s a relevant issue: https://github.com/PrefectHQ/prefect/issues/3870 and a corresponding PR that addresses it: https://github.com/PrefectHQ/prefect/pull/3875. The fix for this was released with 0.14.1.
All that being said, you can resolve this in one of two ways (whichever is more convenient for you):
• upgrade your version of google-cloud-storage
in your Flow’s docker image
• upgrade your Flow’s version of Prefect to 0.14.1Hui Zheng
02/09/2021, 8:09 PM