Pablo Ruiz

Results 1 comments of Pablo Ruiz

I got the `jid` with a scheduled job on rails 4.2 with: ``` job = SomeJob.set(wait: 5.seconds).perform_later jid = Sidekiq::ScheduledSet.new.find{|j| j.args.first["job_id"] == job.job_id }.item['jid'] ``` Not efficient if there are...