Skip to content

Commit a89b0c1

Browse files
committed
Comment and rename variable in lost jobs
1 parent 50580ed commit a89b0c1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

bolt-jobs/bolt/jobs/models.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,13 @@ def mark_lost_jobs(self):
9090
# In theory we could save a timeout per-job and mark them timed-out more quickly,
9191
# but if they're still running, we can't actually send a signal to cancel it...
9292
now = timezone.now()
93-
one_day_ago = now - datetime.timedelta(seconds=settings.JOBS_LOST_AFTER)
93+
cutoff = now - datetime.timedelta(seconds=settings.JOBS_LOST_AFTER)
9494
lost_jobs = self.filter(
95-
created_at__lt=one_day_ago
95+
created_at__lt=cutoff
9696
) # Doesn't matter whether it started or not -- it shouldn't take this long.
97+
98+
# Note that this will save it in the results,
99+
# but lost jobs are only retried if they have a retry!
97100
for job in lost_jobs:
98101
job.convert_to_result(
99102
ended_at=now,

0 commit comments

Comments
 (0)