views:

223

answers:

2

I have resque-scheduler working fine in a rails app. Now I need to be able to track status and remove jobs from the queue. I had a brief look at resque-status and, from what I saw, if I could get it to play nicely with resque-scheduler then it would be perfect.

However, it seems rescue-status uses create which wraps enqueue and resque-scheduler uses the extended enqueue_at which I am using currently. Is there an easy way to get them to play together without too much hacking of the plugins? Has anyone done this already and would be willing to give me some hints?

A: 

I'd love to know the answer to this as well. 4eek -- did you ever figure something out?

dbalatero
No, unfortunately not. We ended up going with a scheduled jobs table and SQS instead as it more closely suites our needs anyway.
4eek
A: 

Hey guys!

resque-scheduler 1.9.6 now supports custom job types including the latest version of resque-status. Upgrade both gems and check out the readme for resque-scheduler on how to set it up.

bvandenbos