down to line 179

This commit is contained in:
Kenneth Kehl
2024-10-16 12:22:00 -07:00
parent e8efde314d
commit 8c7aa30a3e

View File

@@ -116,10 +116,11 @@ def dao_set_scheduled_jobs_to_pending():
from completing until it commits. from completing until it commits.
""" """
stmt = ( stmt = (
select( select(Job)
.filter(
Job.job_status == JobStatus.SCHEDULED, Job.job_status == JobStatus.SCHEDULED,
Job.scheduled_for < utc_now(), Job.scheduled_for < utc_now(),
).select_from(Job) )
.order_by(asc(Job.scheduled_for)) .order_by(asc(Job.scheduled_for))
.with_for_update() .with_for_update()
) )