-
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
http: support server options on createServer #19461
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure what failed here. I ran the tests locally and they passed, and that console output is a bit tough to decipher. Can someone point me to what is actually broken and where I can see the output? |
Are these the output from the actual failures? https://ci.nodejs.org/job/node-test-commit-plinux/nodes=ppcle-ubuntu1404/16151/console I don't see any directly actionable output, but I don't really know what I am looking for here. |
@wesleytodd failures are unrelated, don't worry about that. |
Landed in 42d8ea0, thank you and congratulations on becoming a Node.js contributor! 🎉 |
PR-URL: #19461 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #19461 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesThe feature and docs were added in #15752, but it looks like the
http.createServer
call was missed. I looked for someone else fixing this issue but did not find it.Also this is my first PR, and I tried to follow all the contribution instructions but I may have missed something, so any help with what else I am missing would be great. Thanks in advance.