-
Notifications
You must be signed in to change notification settings - Fork 30.7k
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 8.12 net,http module emit connection
bug. TypeError: ParserIncomingMessage is not a constructor .
#22857
Comments
connection
bug. TypeError: ParserIncomingMessage is not a constructor .
Temporary solution
|
[2018-09-15 13:10:24.637] [ERROR] console - Caught exception: TypeError: ParserIncomingMessage is not a constructor like some problem, seems critical issue!!! |
cc @nodejs/http Offending line: https://github.com/nodejs/node/blob/master/lib/_http_common.js#L86 Looks like it should be const incoming = parser.incoming = ParserIncomingMessage But I'm not 100% sure |
Awaiting a solution for nodejs/node#22857
The problem is simply one of backporting #20029 to v8.x. I'll take care of it later today if no one gets there first. (Surprised that one slipped by.) |
Awaiting a solution for nodejs/node#22857
Awaiting a solution for nodejs/node#22857
Hi, sorry to nudge but is there any progress on getting a fix in - I assume that #22880 is the one to watch? Since this was a regression introduced in the active LTS release, are there plans to do an 8.12.1 release? Thanks. |
cc: @nodejs/lts |
We don't currently have a timeline for the next 8.x release but it could be escalated if this problem is serious enough. We could potentially get a smaller release out in the next 2 - 3 unless this is deemed to be a severe bug, in which case we could escalate a hotfix |
2 - 3 days or weeks? :) |
sorry for missing a word We generally do a 2 week r.c. process for new LTS releases, and we have not yet backported stuff. So unless this is deemed a severe bug which would escalate a release we wouldn't see a release for at least 2 - 3 weeks. |
This problem is not a serious problem, just using the latest version of node, many libraries can not be used. For example pomelo, pinus and mitm. Therefore, using these libraries requires a rollback of the node version. This problem has been repeated many times before and after, I think we should look for reasons to avoid recurring in the future. Thanks. |
@whtiehack we can add them to CITGM so we don't hit this edge case again |
FWIW this is a documented feature: https://nodejs.org/dist/latest-v8.x/docs/api/http.html#http_event_connection
It would seem like the Node.js test suite itself should catch the issue instead of relying on CITGM to catch regressions in documented features. Not saying that it's not worth adding to CIGTM, but maybe someone wants to contribute a test directly. |
Fixed by e3bddeec18. Closing. |
Here is the code that can be reproduced:
The same code run in v10.9.0 and v8.10.0 has been tested without issue.
This is a bug ,because of http_event_connection.
The text was updated successfully, but these errors were encountered: