-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
Node servers crashing on upgrade to v8.x #14198
Comments
/cc @nodejs/async_hooks |
@d3viant0ne fixed version |
That is not released (yet :p), likely it is |
Backtrace from core dump:
From this, it can be seen that the @d3viant0ne I think we need some more information to fully understand this. If this is easily reproducible, could you add the following code to the top of the entry script or use debug-script.js: Error.stackTraceLimit = Infinity;
const async_hooks = require('async_hooks');
async_hooks.createHook({
init(id, type, triggerId, resource) {
if (triggerId < 0 || id < 0) {
process._rawDebug('init', {id, type, triggerId});
throw new Error('bad id');
}
}
}).enable(); |
This might be fixed by #14026 or #13839 |
@refack - I'll give the nightly a try and let you know. |
@refack - Confirmed that's fixed in the nightly. You guys & gals are rockstars :) I'm not familiar with your release process, will those two fixes find their way into an 8.x release at some point or do I need to wait for 9? |
@d3viant0ne The fixes are both included in the current proposal for 8.2.0 @ #13744. We should have everything in there ready by the end of the week, so just wait until Tuesday or so. :) |
Core dump available in s3 bucket
Opening a new issue as requested in #13325
This is happening in all of our restful APIs when trying to run on 8.x ( lots of http ). Core dump attached. Please let me know if there is other useful information I can provide.
The text was updated successfully, but these errors were encountered: