I am using Resque for several asynchronous jobs. I created a custom integration environment that is a clone of my production environment. However, my Resque jobs are not added to Redis in my integration environment.
For example, if I run the following:
$ RAILS_ENV=production rails console > Resque.enqueue(MyLovelyJob, 1)
I will see that the task appears in resque-web.
But if I run the following:
$ RAILS_ENV=integration rails console > Resque.enqueue(MyLovelyJob, 1)
The job does not appear in resque-web.
Itβs clear that I donβt have any configuration, I am pulling my hair out, trying to understand what it is.
Peter source share