I have the following configuration for my resque system (no rails just Sinatra base) where I have bunch of recurring jobs scheduled from a yml file
resque (1.23.0)
resque-scheduler (2.0.0)
resque-status (0.4.0)
The recurring schedule appears on the ‘Schedule’ tab and when I click on a ‘Queue Now’ button the status also appears on the ‘Statuses’ tab, the problem is that when the recurring jobs automatically run, they don’t appear on the ‘Statuses’ tab.. my resque_schedule.yml looks something like this
email_notifier:
every: 5m
custom_job_class: Process_Notification_Emails
queue: email_notifier
args:
description: "Process mail notifications"
Note: These scheduled jobs are actually running every 5 minutes and are behaving as expected,the only issue I’m having is that they don’t appear on the ‘Statuses’ tab unless I manually enqueue them
Any ideas what am I doing wrong here?
https://github.com/bvandenbos/resque-scheduler#support-for-resque-status-and-other-custom-jobs