Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Killing abandoned console on Heroku

Tags:

heroku

console

I have accidentally closed a Heroku console in a not-so-graceful manner. And now when I run

heroku ps --app myapp 

it shows

run.8         up for 5h           bundle exec rails console run.9         complete for 15m    bundle exec rails console web.1         up for 4h           bundle exec unicorn -p $PORT -c ./.. web.2         up for 4h           bundle exec unicorn -p $PORT -c ./.. worker.1      up for 4h           bundle exec rake jobs:work 

Any way I could close the run.8 process and stop having to pay for that one-off dyno?

like image 591
membLoper Avatar asked Sep 20 '11 16:09

membLoper


1 Answers

Try

heroku ps:stop run.8 

Got this from another SO answer.

like image 199
Brian Armstrong Avatar answered Sep 19 '22 10:09

Brian Armstrong