DelayedJob saves a database entry for each installed job, so you can get them directly through the rails console (assuming you use ActiveRecord or the like).
Open the rail console:
$> rails c
and then request the given tasks:
$> Delayed::Job.all
or
$> Delayed::Job.last
Check out the documentation .
If you set delayed_job with another database such as Redis, you might want to go and check the jobs there in the queue.
Nicolas Garnil Sep 01 '13 at 22:42 2013-09-01 22:42
source share