From 3b14040b559be9a4c399dba4411adf9799145650 Mon Sep 17 00:00:00 2001 From: Matti Eiden Date: Thu, 25 Apr 2024 12:50:37 +0300 Subject: [PATCH] fix: add InsufficientLoaError to sentry_ignored_errors --- open_city_profile/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/open_city_profile/views.py b/open_city_profile/views.py index d373637e..a2b366c1 100644 --- a/open_city_profile/views.py +++ b/open_city_profile/views.py @@ -79,6 +79,7 @@ sentry_ignored_errors = ( ObjectDoesNotExist, PermissionDenied, + InsufficientLoaError, Profile.sensitivedata.RelatedObjectDoesNotExist, )