When I run foreman start on the local host, the whole process inside Procfile starts normally:
#Procfile
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb resque: env TERM_CHILD=1 QUEUE=* bundle exec rake resque:work sqs_converted: bundle exec rake sqs:listen_converted sqs_failed: bundle exec rake sqs:listen_failed
$ foreman start 13:52:07 sqs_failed.1 | started with pid 3521 13:52:07 web.1 | started with pid 3518 13:52:07 sqs_converted.1 | started with pid 3520 13:52:07 resque.1 | started with pid 3519
But when I deploy to heroku and run heroku ps all I have is an instance of web.
=== web: `bundle exec unicorn -p $PORT -c ./config/unicorn.rb` web.1: up for 8m
I can not understand what is happening ... Thanks
source share