Killing abandoned process on Heroku

后端 未结 4 1565
无人及你
无人及你 2021-02-03 17:12

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         


        
4条回答
  •  孤独总比滥情好
    2021-02-03 17:20

    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.

提交回复
热议问题