diff --git a/snuba/web/rpc/__init__.py b/snuba/web/rpc/__init__.py index 77ad3b5d4c..13311b5389 100644 --- a/snuba/web/rpc/__init__.py +++ b/snuba/web/rpc/__init__.py @@ -159,6 +159,7 @@ def run_rpc_handler( except (RPCRequestException, QueryException) as e: return convert_rpc_exception_to_proto(e) except Exception as e: + sentry_sdk.capture_exception(e) return convert_rpc_exception_to_proto( RPCRequestException( status_code=500,