This message was deleted.
# ask-marvin
s
This message was deleted.
m
Error: GitHub API error 422: {"message":"Validation Failed","errors":[{"message":"The listed users and repositories cannot be searched either because the resources do not exist or you do not have permission to view them.","resource":"Search","field":"q","code":"invalid"}],"documentation_url":"https://docs.github.com/v3/search/","status":"422"}
Sorry, I encountered an error while processing your request. Please try again.
m
@Marvin Can you give me the solution, you seemed to have failed
m
thought for 57.5 seconds
I’m sorry for the frustration — I don’t have enough context from your last message to give you a precise fix yet. I can get you to a working solution quickly, but I’ll need a few details: - What’s failing exactly? Please paste the exact error/stack trace or the last ~50 lines from your worker and flow logs. - Your Prefect version (
prefect version
) - Are you on Prefect Cloud or a local server? - Which runtime/infrastructure are you targeting in Prefect 2.x (Process, Docker, Kubernetes, ECS, etc.)? - Are you using workers (2.10+) or legacy agents? - How are you deploying (CLI, Python API, or UI)? If CLI, the exact command you ran. If you want a quick sanity check while you gather that info, run this simple Prefect 2.x flow locally to confirm your Python/runtime is fine:
Copy code
from prefect import flow

@flow(log_prints=True)
def ping():
    print("Prefect 2 is running")

if __name__ == "__main__":
    ping()
Once you share the error and your infra details (e.g., “Kubernetes Job with a work pool” or “Docker container worker”), I’ll give you the exact steps and config to get it working.