From f05e874c7a61f8abdc6c873e4ef21a126b1873b3 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Thu, 21 Sep 2023 09:36:07 +0200 Subject: [PATCH] Get alerted if the monitor fails due to the service (#13206) --- scripts/slack-link-monitor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/slack-link-monitor.py b/scripts/slack-link-monitor.py index 790ef18b4ba..8314b0755aa 100644 --- a/scripts/slack-link-monitor.py +++ b/scripts/slack-link-monitor.py @@ -24,3 +24,4 @@ except RuntimeError as err: raise err except Exception as err: logging.error(f"Something went wrong fetching the data - [{err}]") + raise err