I am working on a project that has a web server written in RubyonRails. Another person started the code for this project and I got all the code. This server used delayed_job. The production server is running fine without any problem. However, when I want run it on my local server, none of the delayed_job tasks run. I do not get any error, for example, when I run rake jobs:work on my local server, and I submit a job, this is the output:
[Worker(host:ardrossan pid:20474)] Starting job worker
[Worker(host:ardrossan pid:20474)] Job Delayed::PerformableMethod (id=2) RUNNING
[Worker(host:ardrossan pid:20474)] 1 jobs processed at 17.9446 j/s, 0 failed
But no results is generated. Any advice on how I can get the delayed_jobs working on my local server is appreciated.
I should mention that I am using 'rails', '3.2.17' and my OS is Ubuntu 12.04.4 LTS