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 05618a3 commit 47ef906Copy full SHA for 47ef906
sentry_sdk/client.py
@@ -37,6 +37,7 @@
37
ClientConstructor,
38
)
39
from sentry_sdk.integrations import _DEFAULT_INTEGRATIONS, setup_integrations
40
+from sentry_sdk.integrations.dedupe import DedupeIntegration
41
from sentry_sdk.sessions import SessionFlusher
42
from sentry_sdk.envelope import Envelope
43
from sentry_sdk.profiler.continuous_profiler import setup_continuous_profiler
@@ -606,8 +607,8 @@ def _prepare_event(
606
607
self.transport.record_lost_event(
608
"before_send", data_category="error"
609
- from sentry_sdk.integrations.dedupe import DedupeIntegration
610
611
+ # XXX: Should only reset if this is an exception
612
DedupeIntegration.reset_last_seen()
613
614
event = new_event
0 commit comments