-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deduplication is happening even after removing Dedupe from integrations #14690
Comments
Hi, this seems like it is working as intended. The dedupe integration merely dedupes different errors that look the same. Think spamming a faulty button handler. The log message you're seeing is related to the SDK not capturing the same exact error more than once. Think:
This functionality is always desired and cannot be disabled. |
The reason I call If |
I have tried to disable Sentry automatically capturing |
How did you remove the GlobalHandlers integration? What Generally speaking, you can try to use |
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/nextjs
SDK Version
8.44.0
Framework Version
Next 14.0.2
Link to Sentry event
No response
Reproduction Example/SDK Setup
sentry.client.config.js
:Steps to Reproduce
Call
let eventId = Sentry.captureException(error)
inwindow.onerror
.Sentry has already captured the event (in the GlobalHandlers integration?).
Expected Result
A second error should be sent to Sentry since Dedupe integration is removed and the
eventId
returned should correspond to this event.Actual Result
Second error is not send and
eventId
cannot be found on Sentry. Sentry prints out the following debug message:The text was updated successfully, but these errors were encountered: