Killing abandoned process on Heroku -


i killed irb prompt in not-so-graceful manner (started heroku run irb), , i've got zombie process can't seem kill:

process       state               command ------------  ------------------  ------------------------------ run.3         2h           irb -r ./init.rb web.1         0s           thin -p $port -e $rack_env -r $her.. 

i've tried:

  • heroku restart
  • heroku ps:scale run=0
  • heroku ps:restart run.3

anyone know how can force quit it?

i noticed new ps:stop command added heroku command line client few days ago:
https://github.com/heroku/heroku/commit/a6d9eb7f314bf2c5f162a508e8d764286fb577bb

i'm not sure if change made version 2.9.0 worth try.

update

this in heroku toolbelt. run:

heroku ps:stop <process id heroku ps> 

example:

heroku ps:stop run.8729 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -