Skip to content

Commit

Permalink
IAM-1269 added blanket exception to catch all other errors in the _ve…
Browse files Browse the repository at this point in the history
…rified method
  • Loading branch information
frosemond committed Apr 2, 2024
1 parent f5b421b commit 64dd5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/oidc_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 64dd5ad

Please sign in to comment.