/opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations
NameSizeModeActions
django/-0755rm
__pycache__/-0755rm
aiohttp.py38890644editdlrm
argv.py8940644editdlrm
atexit.py14900644editdlrm
aws_lambda.py67580644editdlrm
bottle.py55270644editdlrm
celery.py44230644editdlrm
dedupe.py10850644editdlrm
excepthook.py13350644editdlrm
flask.py72720644editdlrm
gnu_backtrace.py30080644editdlrm
logging.py60190644editdlrm
modules.py12390644editdlrm
pyramid.py59140644editdlrm
rq.py32730644editdlrm
sanic.py70650644editdlrm
serverless.py12380644editdlrm
stdlib.py18690644editdlrm
threading.py15970644editdlrm
tornado.py63870644editdlrm
wsgi.py72990644editdlrm
_wsgi_common.py36660644editdlrm
__init__.py42360644editdlrm
Edit: /opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations/dedupe.py (1085B)
from sentry_sdk.hub import Hub from sentry_sdk.utils import ContextVar from sentry_sdk.integrations import Integration from sentry_sdk.scope import add_global_event_processor if False: from typing import Any from typing import Dict from typing import Optional class DedupeIntegration(Integration): identifier = "dedupe" def __init__(self): # type: () -> None self._last_seen = ContextVar("last-seen") @staticmethod def setup_once(): # type: () -> None @add_global_event_processor def processor(event, hint): # type: (Dict[str, Any], Dict[str, Any]) -> Optional[Dict[str, Any]] integration = Hub.current.get_integration(DedupeIntegration) if integration is not None: exc_info = hint.get("exc_info", None) if exc_info is not None: exc = exc_info[1] if integration._last_seen.get(None) is exc: return None integration._last_seen.set(exc) return event