I installed my Procfile in the root of my application:
web: bundle exec thin start -p $PORT worker: bundle exec sidekiq -c 5 -v
and I see the hero see it when I push the rails application through git push heroku master
Procfile declares types -> web, worker
The problem is that a bunch of jobs just get stuck in the "enqueue" section.
If I run heroku run bundle exec sidekiq from the command line, then only the tasks will be executed.
Any ideas on how I could debug this? Thanks!
source share