I accidentally pushed a build that does an npm install in the postinstall script. This has led to my heroku app being stuck in an infinite install loop. I searched the heroku documentation on how to kill builds but came up blank. The closest thing I found was https://help.heroku.com/Z44Q4WW4/how-do-i-stop-a-release-phase and I tried killing as per those instructions but my build won't die :(
相关问题
- How to specify memcache server to Rack::Session::M
- Connecting Python to a Heroku PostgreSQL DB?
- rails/heroku migrating from gem to toolbelt
- Using runtime env with React and heroku
- Heroku process.env.port is undefined
相关文章
- Django/Heroku: FATAL: too many connections for rol
- Heroku Web Server Won't Start Locally
- Heroku push issue
- Why does Rake task enhancement differ between my l
- Push rejected, failed to detect set buildpack hero
- Email With Rails 3 and Heroku Net::SMTPSyntaxError
- Heroku db:pull 'db:pull is not a heroku comman
- Rails 4 app on Heroku is 500ing, but no error mess
The heroku-builds CLI plugin has a
builds:cancel
command which will stop a running build.All builds will time out too after a time that can go between 15 minutes to 1 hour.
If you have a build going into production right now and need to stop it quickly:
To view all builds:
heroku builds -a YOUR_APP_NAME
To cancel a specific (pending) build:
heroku builds:cancel -a YOUR_APP_NAME HEROKU_BUILD_ID