Hello, a few of our flow runs failures from 4:30 t...
# prefect-community
h
Hello, a few of our flow runs failures from 4:30 to 4:50 PST time with the same issue of failure in retrieving task
GCS_result
. It happened to flow runs on different agents and k8e clusters. I wonder if there is a Prefect-cloud infrastructure issue?
below is the log from one of the run
c
Hi @Hui Zheng - this isn’t related to Prefect Cloud; the error I see is
Copy code
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.1
h
Thank you, Chris. !
👍 1