On Heroku, I'm trying to setup a worker-only (no web) dyno.
My Profile has:
worker: python common/elections_updater.py
But after I push and try to scale, I get this:
$heroku scale web=0 worker=1
Scaling web processes... done, now running 0
Scaling worker processes... failed
! No such type as worker
What am I doing wrong?
webprocess on heroku has a special meaning (other process you can name anything). Perhaps there's an error because it's missing. Somewhat related info here – Jeff Nov 5 '12 at 21:30