I'm using Resque
for a couple of asynchronous jobs. I've set up a custom environment integration
which is a clone of my production
environment. However, my Resque
jobs do not get 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 the job appear 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.
Clearly I'm missing some kind of configuration, I'm pulling my hair out trying to work out what it is.