-
Notifications
You must be signed in to change notification settings - Fork 404
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
Incompatibility with raven-node #94
Comments
I'm not sure this is New Relic's bug, because bunyan is the piece that's crashing and raven is the thing stashing the array of CallSites on the side of the Error. We can't work around all the crazy monkeypatching that goes on in Node modules, but we do do a lot of (probably excessively) clever stuff ourselves, so I'll take a look at how difficult it would be to harden against this kind of weirdness. Your test case will be super helpful, so thanks for the clear description and sample code! |
This cropped up from a google search - we're seeing similar things from Raven when you send it circular references. We're not using node-newrelic either. :) |
Fixed with the last version of raven-node |
…prisma-app/app/protobufjs-7.2.4 chore(deps): bump protobufjs from 7.2.3 to 7.2.4 in /prisma-app/app
fixed troubleshooting issue type and updated all deprecated actions
…omation added husky + lint staged and hook to update third party manifest/notices
release v4.0.1
release v4.0.1
This error is throw when I use newrelic and raven-node
TypeError: Cannot read property 'accept-encoding' of undefined
.There is already a similar issue #86 but I'm not sure if it's also because raven-node is used.
raven-node use raw-stacktrace to have a detailed stack trace with this code :
And this create a problem in bunyan module line 685 :
It can no longer serialize errors because it can not serialize structuredStackTrace property set by raven-node.
Here a sample of code to produce the bug :
And the package.json
Run and go to http://localhost:3000/error
The text was updated successfully, but these errors were encountered: