When jobs are enqueued by the scheduler, they are all being enqueued with the current run_at. Although this makes no difference to whether the jobs are run, it would yield a more predictable order if they were enqueued with the exact run_at time (which will always be in the past).
When jobs are enqueued by the scheduler, they are all being enqueued with the current
run_at
. Although this makes no difference to whether the jobs are run, it would yield a more predictable order if they were enqueued with the exactrun_at
time (which will always be in the past).