We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b815c2c commit 480c2d7Copy full SHA for 480c2d7
sentry_sdk/integrations/dedupe.py
@@ -62,11 +62,11 @@ def processor(event, hint):
62
if exc_info is None:
63
return event
64
65
- event_hash = DedupeIntegration._get_event_hash(event)
66
- if integration._last_seen.get(None) == event_hash:
+ exc = exc_info[1]
+ if integration._last_seen.get(None) == id(exc):
67
return None
68
69
- integration._last_seen.set(event_hash)
+ integration._last_seen.set(id(exc))
70
71
72
@staticmethod
0 commit comments