Skip to content
Snippets Groups Projects
Commit 53e65c00 authored by Vermaat's avatar Vermaat
Browse files

Do not catch any error in the batch processor but just crash instead

We should leave process control to others, for example supervisord which
can automatically restart crashed processes.
parent ec13f2d1
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ import argparse
import signal
import sys
import time
import traceback
from .. import config
from .. import Db
......@@ -40,14 +39,7 @@ def process():
while not scheduler.stopped():
# Process batch jobs. This process() method runs while there
# exist jobs to run.
try:
scheduler.process(counter)
except Exception as e:
f = open('/tmp/batcherror.log', 'a+')
f.write('Error (%s): %s\n' % (type(e), str(e)))
f.write('%s\n\n' % repr(traceback.format_exc()))
f.flush()
f.close()
scheduler.process(counter)
if scheduler.stopped():
break
# Wait a bit and process any possible new jobs.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment