Hello, I am struggling to onboard some new flows. ...
# prefect-cloud
r
Hello, I am struggling to onboard some new flows. Is there somewhere that I can look to see why the Cloud is not pulling these from storage? I am getting to following error when I deploy.
Copy code
Block document has schema checksum <omitted checksum> which does not match the schema checksum for class 'RemoteFileSystem'. This indicates the schema has changed and this block may not load.
  return cls._from_block_document(block_document)
c
Hi Ryan, this is a pretty benign warning that basically says the version you created the block on is different than your current version . Notably the cloud doesn’t “load” your flow, the execution of your flow run does
I would be looking at the actual flow runs themselves to see why flows aren’t pulling from storage
r
Thanks @Christopher Boyd. I will keep looking.