-
-
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
Broken custom dataloader methods #13869
Labels
Comments
Hey @michalsanger sorry for the trouble here! For now you can disable the dataloader integration like so: Sentry.init({
// ...
integrations: function (integrations) {
// filter out Dataloader integration due to bug
return integrations.filter(function (integration) {
return integration.name !== "Dataloader";
});
},
}); @onurtemizkan could you help investigate why this is happening? |
@AbhiPrasad thanks for the workaround, works OK. |
Opened a PR upstream to fix this: open-telemetry/opentelemetry-js-contrib#2498 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/node
SDK Version
8.33.1
Framework Version
fastify 5.0.0
Link to Sentry event
No response
Reproduction Example/SDK Setup
No response
Steps to Reproduce
The automated dataloader integration added in #13664 breaks my code.
I have a dataloader like this:
Expected Result
That code worked OK until
"@sentry/node": "8.30.0"
Actual Result
After upgrade to
"@sentry/node": "8.31.0"
or later, callingloadByInternalId
method fails:The text was updated successfully, but these errors were encountered: