Skip to content
Snippets Groups Projects
Commit 1ccca8ab authored by juga's avatar juga
Browse files

scanner: stop raising exception in worker thread

parent eb74aecb
Branches
Tags
No related merge requests found
......@@ -270,11 +270,7 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
def dispatch_worker_thread(*a, **kw):
try:
return measure_relay(*a, **kw)
except Exception as err:
log.exception('Unhandled exception in worker thread')
raise err
return measure_relay(*a, **kw)
def _should_keep_result(did_request_maximum, result_time, download_times):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment