Conversation
doc/api/cli.md
Outdated
There was a problem hiding this comment.
Can you add an YAML added: block, similar to other items in this file?
There was a problem hiding this comment.
Also: it seems these sections are sorted alphabetically, so this one needs to be placed after the NODE_PENDING_DEPRECATION=1.
There was a problem hiding this comment.
@addaleax Though NODE_PENDING_DEPRECATION could be documented here, it's "added" long time ago rather than a new feature. Maybe we should keep the document here without added: block?
Also: it seems these sections are sorted alphabetically, so this one needs to be placed after the NODE_PENDING_DEPRECATION=1.
Done!
373e89f to
1187d2b
Compare
doc/api/cli.md
Outdated
There was a problem hiding this comment.
| for connections. Note that this setting applies to Windows only. | |
| for connections. This setting applies to Windows only. |
|
Resume: https://ci.nodejs.org/job/node-test-pull-request/18646/
@addaleax I see that #24289 documents And does this still LGTY? |
|
Sorry about the |
|
Any other thoughts on this? |
lib/net.js
Outdated
There was a problem hiding this comment.
Are these merge conflicts supposed to be here?
|
@oyyd can you rebase? |
58c078e to
8dc83d5
Compare
|
Thank you. I think you can land this after a green CI. |
This commit cleans up net module, including: 1. remove assigning `handle.readable` and `handle.writable` 2. documents `NODE_PENDING_PIPE_INSTANCES` enviroment variable 3. use constants for '0.0.0.0' and '::'.
|
The tests on |
|
Probably was a transient issue - https://ci.nodejs.org/job/node-test-commit-arm-fanned/7205/ |
This commit cleans up net module, including: 1. remove assigning `handle.readable` and `handle.writable` 2. documents `NODE_PENDING_PIPE_INSTANCES` enviroment variable 3. use constants for '0.0.0.0' and '::'. PR-URL: #24128 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
|
Landed in cd8b739. Thank you all! |
This commit cleans up net module, including: 1. remove assigning `handle.readable` and `handle.writable` 2. documents `NODE_PENDING_PIPE_INSTANCES` enviroment variable 3. use constants for '0.0.0.0' and '::'. PR-URL: nodejs#24128 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit cleans up net module, including: 1. remove assigning `handle.readable` and `handle.writable` 2. documents `NODE_PENDING_PIPE_INSTANCES` enviroment variable 3. use constants for '0.0.0.0' and '::'. PR-URL: #24128 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit cleans up net module, including:
handle.readableandhandle.writable. It's add in Server.listen({ fd: number }) node-v0.x-archive#3422 and I see nowhere we use these two properties right now.NODE_PENDING_PIPE_INSTANCES. It was add in 99c9d19 long time ago but was not documented and there is no test for it. Maybe we can consider removing it?Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes