Hello, I'm trying to run a deploy to prefect cloud...
# prefect-cloud
b
Hello, I'm trying to run a deploy to prefect cloud:
Copy code
prefect --no-prompt deploy --all
But getting the following Alembic error:
Copy code
alembic.script.revision.ResolutionError: No such revision or branch 'bacc60edce16'
I had previously started a
prefect
command to deploy, but control+c killed it. Before that, deployments had been running fine.
1
It looks like the prefect cli was using a local sqlite db, in the
.prefect/
directory. I deleted that based on some Googled advice.
j
Sounds like the active profile wasn’t pointing to Prefect Cloud. You could run
prefect cloud login
from the CLI to authenticate and should be good to go.
You can learn more about profiles here.
b
Oof, that's correct -- I switched terminals and forgot to login. Thanks!
👍 1
j
Cool. No problem. 🙂