Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(#1551): don't show error traces for EntityNotFoundError's #1569

Merged
merged 3 commits into from
Jun 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/rubrix/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from rubrix.server.daos.datasets import DatasetsDAO
from rubrix.server.daos.records import DatasetRecordsDAO
from rubrix.server.elasticseach.client_wrapper import create_es_wrapper
from rubrix.server.errors import APIErrorHandler
from rubrix.server.errors import APIErrorHandler, EntityNotFoundError
from rubrix.server.routes import api_router
from rubrix.server.security import auth
from rubrix.server.static_rewrite import RewriteStaticFiles
Expand All @@ -54,6 +54,7 @@ def configure_middleware(app: FastAPI):

def configure_api_exceptions(api: FastAPI):
"""Configures fastapi exception handlers"""
api.exception_handler(EntityNotFoundError)(APIErrorHandler.common_exception_handler)
api.exception_handler(Exception)(APIErrorHandler.common_exception_handler)
api.exception_handler(RequestValidationError)(
APIErrorHandler.common_exception_handler
Expand Down