Skip to content

Commit 42cc20d

Browse files
committed
Fix mark lost jobs, log exceptions inside worker
1 parent a89b0c1 commit 42cc20d

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

bolt-jobs/bolt/jobs/models.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,7 @@ def mark_lost_jobs(self):
9898
# Note that this will save it in the results,
9999
# but lost jobs are only retried if they have a retry!
100100
for job in lost_jobs:
101-
job.convert_to_result(
102-
ended_at=now,
103-
error="",
104-
status=JobResultStatuses.LOST,
105-
)
101+
job.convert_to_result(status=JobResultStatuses.LOST)
106102

107103

108104
class Job(models.Model):

bolt-jobs/bolt/jobs/workers.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,13 @@ def run(self):
3535

3636
try:
3737
while True:
38-
self.maybe_log_stats()
39-
self.maybe_check_job_results()
38+
try:
39+
self.maybe_log_stats()
40+
self.maybe_check_job_results()
41+
except Exception as e:
42+
# Log the issue, but don't stop the worker
43+
# (these tasks are kind of ancilarry to the main job processing)
44+
logger.exception(e)
4045

4146
with transaction.atomic():
4247
job_request = JobRequest.objects.next_up()
@@ -63,14 +68,9 @@ def run(self):
6368
del job
6469

6570
self.executor.submit(process_job, job_uuid)
66-
6771
except (KeyboardInterrupt, SystemExit):
6872
self.executor.shutdown(wait=True, cancel_futures=True)
6973

70-
except Exception as e:
71-
# Some kind of error in the job system...
72-
logger.exception(e)
73-
7474
def maybe_log_stats(self):
7575
if not self.stats_every:
7676
return

0 commit comments

Comments
 (0)