We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c4a623 + ab22946 commit 512122dCopy full SHA for 512122d
activejob/lib/active_job/core.rb
@@ -40,9 +40,9 @@ def deserialize(job_data)
40
#
41
# VideoJob.set(queue: :some_queue).perform_later(Video.last)
42
# VideoJob.set(wait: 5.minutes).perform_later(Video.last)
43
- # VideoJob.set(wait_until: Time.tomorroe).perform_later(Video.last)
+ # VideoJob.set(wait_until: Time.now.tomorrow).perform_later(Video.last)
44
# VideoJob.set(queue: :some_queue, wait: 5.minutes).perform_later(Video.last)
45
- # VideoJob.set(queue: :some_queue, wait_until: Time.tomorroe).perform_later(Video.last)
+ # VideoJob.set(queue: :some_queue, wait_until: Time.now.tomorrow).perform_later(Video.last)
46
def set(options={})
47
ConfiguredJob.new(self, options)
48
end
0 commit comments