You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SidekiqWorker.perform_async(1) usually returns the job-id of scheduled job. However, if the job is already scheduled, SidekiqWorker.perform_async(1) on subsequent calls will return nil. In latter case, is it possible to get the job-id of original job?
The text was updated successfully, but these errors were encountered:
To my knowledge that is not an easy task. I mean you could query based on the unique key and possibly get the jid from the hash we use but it would be quite complicated and time consuming.
SidekiqWorker.perform_async(1)
usually returns the job-id of scheduled job. However, if the job is already scheduled,SidekiqWorker.perform_async(1)
on subsequent calls will returnnil
. In latter case, is it possible to get the job-id of original job?The text was updated successfully, but these errors were encountered: