From bd827fe54a4711b78d7f863d934933be6d4d008c Mon Sep 17 00:00:00 2001 From: Viktor Winkelmann Date: Fri, 5 Jan 2024 00:42:09 +0100 Subject: [PATCH] fix exception in notification plugin stopping further processing of failure alerts --- backend/notifications/tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/notifications/tasks.py b/backend/notifications/tasks.py index dd44cc6cb..988eddcca 100644 --- a/backend/notifications/tasks.py +++ b/backend/notifications/tasks.py @@ -144,3 +144,5 @@ def send_failure_alerts( plugin.instance.send_failure_alert(context=context) except NotImplementedError: pass + except Exception: + capture_exception()