Reputation: 239
How do you kill all heroku workers?
I have tried:
heroku scale worker=0
and it doesn't work.
Upvotes: 5
Views: 7196
Reputation: 37507
It depends on the stack.
The slider interface exposed via the website doesn't let you control Cedar stack applications, one of the following should do the trick though:
heroku ps:stop worker
or
heroku ps:workers 0
Upvotes: 10
Reputation: 33954
Have you tried logging into the web interface and manually changing the number of workers to zero via the up/down slider?
That is, log into heroku, go to your app's Resources
page, and drag the "Worker Dynos" slider to zero, then save the changes via the "Save and Apply" button on the top-right.
Upvotes: 2