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
I would expect the job to be de-duped, however when I run the following a day later, enqueuing is a success, why? _Is this expected or a bug?_
# A day after enqueuing the above job, enqueuing this job is a success? Why?irb(main)> ReminderWorker.perform_in(5.seconds,45)=>"a8ae57d4ccbfd1922874ad62"# A minute later, enqueuing job is rejected as expectedirb(main)> ReminderWorker.perform_async(45)=>nil
Given the following worker:
I enqueue the following job:
I would expect the job to be de-duped, however when I run the following a day later, enqueuing is a success, why? _Is this expected or a bug?_
Using the following gems:
The text was updated successfully, but these errors were encountered: