-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pre-release app is broken with out of date database and can't be deployed #2715
Comments
I've been spending time on this on and off all week, and finally made some sort of breakthrough. I discovered that buildpacks, whilst tagged, aren't actually versioned anywhere visible on Heroku (via the Web or the CLI), which was frustrating. We last probably used v264, so I tried replacing that and redeploying but the current version of
I then tried a branch based off of where we last successfully deployed (2024-01-17), which worked:
So somewhere we made an application change which is causing problems. More experiments needed. |
Oh, and: it's 500ing because I guess we never ran the migrations earlier in the year. That was an easy fix, so that's the app up and running again at least. |
I just (finally) got to bisect the changes, and it was the addition of #2705 which caused this. |
Currently, if you go to https://administrate-demo-prerelease.herokuapp.com/admin, you get a 500 error.
We have this setup to deploy immediately from
main
, so it sometimes breaks when we make changes.Looking in the logs on Heroku, the origin of that error is:
But, if I deploy, we get:
It's buried in there a bit, but it's because something (the buildpack?) is looking for the
Gemfile
in the wrong place.The text was updated successfully, but these errors were encountered: