From 64dd5ad2e0226e7990f8f58c7c43b7a7c90be9b6 Mon Sep 17 00:00:00 2001 From: Felicia Rosemond Date: Tue, 2 Apr 2024 13:47:41 -0400 Subject: [PATCH] IAM-1269 added blanket exception to catch all other errors in the _verified method --- dashboard/oidc_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/oidc_auth.py b/dashboard/oidc_auth.py index 56147a1d..8ae74cd9 100644 --- a/dashboard/oidc_auth.py +++ b/dashboard/oidc_auth.py @@ -107,7 +107,7 @@ def _verified(self): # in _validate, our job is to pass/fail everything, and letting code raise out # of here blows up the website in front of customers. Let's do something better # as a last-choice, maybe we need more exceptions caught above - logger.warning(traceback.format_exc()) + logger.warning("Unknown error occurred "+traceback.format_exc()) return False def error_message(self):