Reputation: 2940
Seems like a simple question, but I haven't found the answer anywhere. Running heroku ps
shows nothing. heroku restart
executes successfully.
Upvotes: 4
Views: 2007
Reputation: 2347
I was doing a silly mistake. I was using
heroku run ps (since there were other commands that I was using as "run")
instead of
heroku ps. (ps is a heroku command and not a system command).
Removing run fixed the issue. Thanks.
Upvotes: 0
Reputation: 4526
Have you tried scaling one of your process types? e.g. heroku ps:scale web=1
See https://devcenter.heroku.com/articles/scaling
Upvotes: 8