-
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
Updating to node 12.19.0 from 12.18.4 crashes my application #35572
Comments
I suspect you are using unidici somewhere in your dependencies. This was fixed in nodejs/undici#449 and released in 2.0.7. |
@MylesBorins maybe we should add undici to CITGM? |
https://github.com/nodejs/undici/blob/master/lib/node/http-parser.js#L3-L4 — caused by using the internal API directly. @special-character could you confirm that updating/resolving |
I think we can close this. Please let us know if there are any further questions. |
Using |
@special-character There may be other modules in the wild using the internal HTTPParser API which changed. |
@special-character Do you have a repro? |
I don't have a repro yet but can look into making a minimal one. |
I'm facing the same issue as described in #35582 Version: v16.0.0 Update: There's already an issue filed here in this regard prisma/prisma#6684 |
Thanks @ksharifbd, I meant to follow up here. I didn't find out what the issue was but we are using prisma. We ended up jumping to node 14 which didn't have the problem. |
What steps will reproduce the bug?
I am not entirely sure what is using
12.19.0
but after updating from12.18.4
my app crashes with the following error in node:How often does it reproduce? Is there a required condition?
This happens any time my app is started and a request is made.
Additional information
I tried to search for what is using the
node_http_parser_impl
in my application but there seems to be a good amount of possibilities (like express, fs-events, etc...). I am opening this because I think it is node related. Keeping my samenode_modules
and only switching from12.18.4
to12.19.0
causes the breakage.The text was updated successfully, but these errors were encountered: