I killed an IRB prompt in a not-so-graceful manner (started with heroku run irb
), and now I\'ve got a zombie process which I can\'t seem to kill:
Pr
If anyone else is struggling with killing using something like:
heroku run ps:stop run.789
Killing by id worked for me:
heroku ps:kill 61ff0687-eaf4-4299-9c65-f0b22af7ec67
I got the id using the platform api list dynos - https://devcenter.heroku.com/articles/platform-api-reference#dyno-list
Worked for a detached one-off that was abandoned.