File tree 2 files changed +8
-12
lines changed
2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -98,11 +98,7 @@ def mark_lost_jobs(self):
98
98
# Note that this will save it in the results,
99
99
# but lost jobs are only retried if they have a retry!
100
100
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 )
106
102
107
103
108
104
class Job (models .Model ):
Original file line number Diff line number Diff line change @@ -35,8 +35,13 @@ def run(self):
35
35
36
36
try :
37
37
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 )
40
45
41
46
with transaction .atomic ():
42
47
job_request = JobRequest .objects .next_up ()
@@ -63,14 +68,9 @@ def run(self):
63
68
del job
64
69
65
70
self .executor .submit (process_job , job_uuid )
66
-
67
71
except (KeyboardInterrupt , SystemExit ):
68
72
self .executor .shutdown (wait = True , cancel_futures = True )
69
73
70
- except Exception as e :
71
- # Some kind of error in the job system...
72
- logger .exception (e )
73
-
74
74
def maybe_log_stats (self ):
75
75
if not self .stats_every :
76
76
return
You can’t perform that action at this time.
0 commit comments