Skip to content
Snippets Groups Projects
Commit 9ea40844 authored by Erik Johnston's avatar Erik Johnston
Browse files

Handle exceptions thrown by background tasks

Fixes #3921
parent 3fd68d53
No related branches found
No related tags found
No related merge requests found
...@@ -191,6 +191,8 @@ def run_as_background_process(desc, func, *args, **kwargs): ...@@ -191,6 +191,8 @@ def run_as_background_process(desc, func, *args, **kwargs):
try: try:
yield func(*args, **kwargs) yield func(*args, **kwargs)
except Exception:
logger.exception("Background process '%s' threw an exception", desc)
finally: finally:
proc.update_metrics() proc.update_metrics()
......
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