✏️ 正在编辑: trytond.py
路径:
/opt/hc_python/lib/python3.12/site-packages/sentry_sdk/integrations/trytond.py
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
import sentry_sdk from sentry_sdk.integrations import DidNotEnable, Integration from sentry_sdk.integrations.wsgi import SentryWsgiMiddleware from sentry_sdk.utils import ensure_integration_enabled, event_from_exception try: from trytond.exceptions import TrytonException # type: ignore from trytond.wsgi import app # type: ignore except ImportError: raise DidNotEnable("Trytond is not installed.") # TODO: trytond-worker, trytond-cron and trytond-admin intergations class TrytondWSGIIntegration(Integration): identifier = "trytond_wsgi" origin = f"auto.http.{identifier}" def __init__(self) -> None: pass @staticmethod def setup_once() -> None: app.wsgi_app = SentryWsgiMiddleware( app.wsgi_app, span_origin=TrytondWSGIIntegration.origin, ) @ensure_integration_enabled(TrytondWSGIIntegration) def error_handler(e: Exception) -> None: if isinstance(e, TrytonException): return else: client = sentry_sdk.get_client() event, hint = event_from_exception( e, client_options=client.options, mechanism={"type": "trytond", "handled": False}, ) sentry_sdk.capture_event(event, hint=hint) # Expected error handlers signature was changed # when the error_handler decorator was introduced # in Tryton-5.4 if hasattr(app, "error_handler"): @app.error_handler def _(app, request, e): # type: ignore error_handler(e) else: app.error_handlers.append(error_handler)
💾 保存文件
← 返回文件管理器