Fix perform_enqueued_jobs :at option doc [ci-skip]

The `:at` option will perform jobs that have been enqueued to run at the
exact specified time, as well as before the specified time.
This commit is contained in:
Jonathan Hefner 2023-07-11 12:33:40 -05:00
parent 705d515ac5
commit 4230d0d2be
1 changed files with 3 additions and 2 deletions

View File

@ -595,8 +595,9 @@ module ActiveJob
# assert_performed_jobs 1
# end
#
# If the +:at+ option is specified, then only run jobs enqueued to run
# immediately or before the given time
# If the +:at+ option is specified, then only jobs that have been enqueued
# to run at or before the given time will be performed. This includes jobs
# that have been enqueued without a time.
#
# If queue_adapter_for_test is overridden to return a different adapter,
# +perform_enqueued_jobs+ will merely execute the block.