From bbed445efae8b900062510d2dca4ad33d07bda91 Mon Sep 17 00:00:00 2001 From: Andoni Alonso <14891798+andoniaf@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:13:19 +0200 Subject: [PATCH] chore(sentry): ignore exception when aws service not available in a region (#7352) --- api/src/backend/config/settings/sentry.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/backend/config/settings/sentry.py b/api/src/backend/config/settings/sentry.py index bb76173b6c..f6ac512cf2 100644 --- a/api/src/backend/config/settings/sentry.py +++ b/api/src/backend/config/settings/sentry.py @@ -54,6 +54,8 @@ IGNORED_EXCEPTIONS = [ "AzureClientIdAndClientSecretNotBelongingToTenantIdError", "AzureHTTPResponseError", "Error with credentials provided", + # AWS Service is not available in a region + "EndpointConnectionError", ]