-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
https: add missing localPort while create socket #24554
Conversation
Travis CI failed due to github api rate limit.
|
13d69be
to
9725da0
Compare
|
In `_tls_wrap.js` while calling `socket.connect` the `localPort` was missing, restore it. Fix: nodejs#24543
Brand new fresh CI: https://ci.nodejs.org/job/node-test-pull-request/19110/ |
Hmmm...this stalled somehow. CI: https://ci.nodejs.org/job/node-test-pull-request/20940/ /ping @nodejs/http for reviews |
const https = require('https'); | ||
const assert = require('assert'); | ||
|
||
{ |
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.
Nit: I think there is no reason to use this block.
Resume Build CI: https://ci.nodejs.org/job/node-test-pull-request/20941/ |
Resume Build CI again: https://ci.nodejs.org/job/node-test-pull-request/20946/ macOS is acting up. 😞 |
Resumed CI https://ci.nodejs.org/job/node-test-pull-request/21174/ ✔️ |
In `_tls_wrap.js` while calling `socket.connect` the `localPort` was missing, restore it. PR-URL: nodejs#24554 Fixes: nodejs#24543 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
Landed in c8e0c09 🎉 |
In `_tls_wrap.js` while calling `socket.connect` the `localPort` was missing, restore it. PR-URL: nodejs#24554 Fixes: nodejs#24543 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
In `_tls_wrap.js` while calling `socket.connect` the `localPort` was missing, restore it. PR-URL: #24554 Fixes: #24543 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
In
_tls_wrap.js
while callingsocket.connect
thelocalPort
wasmissing, restore it.
Fix: #24543
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes