https://prefect.io logo
Title
r

Ryan Bermel

02/06/2023, 9:09 PM
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.
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

Christopher Boyd

02/07/2023, 1:00 PM
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

Ryan Bermel

02/07/2023, 1:02 PM
Thanks @Christopher Boyd. I will keep looking.