<@ULVA73B9P> I’m getting “File “/usr/local/lib/pyt...
# ask-marvin
e
@Marvin I’m getting “File “/usr/local/lib/python3.11/site-packages/prefect/utilities/dispatch.py”, line 185, in lookup_type raise KeyError( KeyError: “No class found for dispatch key ‘github-repository’ in registry for type ‘Block’.“” when trying to run a flow
m
It seems you've run into a rather unfortunate error involving Prefect blocks. Although my search didn't turn up any specific GitHub issues for this particular error, blocks are a key component of Prefect used for various functionalities including loading configurations, and interfacing with filesystems or other services. Based on your error message, this could potentially be a configuration issue where the
github-repository
block is not properly recognized or implemented in your flow or environment - you may need to define this block type or ensure it is correctly registered. Since the Prefect documentation search did not directly address the
KeyError
you're encountering, I would recommend checking if you have properly configured your blocks or if there have been any recent changes that might have affected block dispatch keys. You can get more insight into blocks and their functionalities in the Prefect blog post on the global coordination plane: Prefect Global Coordination Plane Considering Prefect's dynamic nature, keeping an eye on the Prefect changelogs and ensuring you're not facing a version compatibility issue might also be useful. To obtain more specific help, I would recommend reaching out to the Prefect community or support with details of your implementation for targeted assistance.