We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50580ed commit a89b0c1Copy full SHA for a89b0c1
bolt-jobs/bolt/jobs/models.py
@@ -90,10 +90,13 @@ def mark_lost_jobs(self):
90
# In theory we could save a timeout per-job and mark them timed-out more quickly,
91
# but if they're still running, we can't actually send a signal to cancel it...
92
now = timezone.now()
93
- one_day_ago = now - datetime.timedelta(seconds=settings.JOBS_LOST_AFTER)
+ cutoff = now - datetime.timedelta(seconds=settings.JOBS_LOST_AFTER)
94
lost_jobs = self.filter(
95
- created_at__lt=one_day_ago
+ created_at__lt=cutoff
96
) # 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!
100
for job in lost_jobs:
101
job.convert_to_result(
102
ended_at=now,
0 commit comments