Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upnet: some scattered cleanup #24128
Conversation
nodejs-github-bot
added
the
net
label
Nov 6, 2018
addaleax
approved these changes
Nov 6, 2018
| @@ -751,6 +751,11 @@ threadpool by setting the `'UV_THREADPOOL_SIZE'` environment variable to a value | |||
| greater than `4` (its current default value). For more information, see the | |||
| [libuv threadpool documentation][]. | |||
|
|
|||
| ### `NODE_PENDING_PIPE_INSTANCES=instances` | |||
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
vsemozhetbyt
Nov 6, 2018
Member
Also: it seems these sections are sorted alphabetically, so this one needs to be placed after the NODE_PENDING_DEPRECATION=1.
This comment has been minimized.
This comment has been minimized.
oyyd
Nov 7, 2018
Author
Contributor
@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!
oyyd
force-pushed the
oyyd:net-cleanup
branch
from
fb67ac0
to
3f2cb41
Nov 7, 2018
This comment has been minimized.
This comment has been minimized.
oyyd
force-pushed the
oyyd:net-cleanup
branch
3 times, most recently
from
373e89f
to
1187d2b
Nov 15, 2018
This comment has been minimized.
This comment has been minimized.
Trott
reviewed
Nov 15, 2018
| ### `NODE_PENDING_PIPE_INSTANCES=instances` | ||
|
|
||
| Set the number of pending pipe instance handles when the pipe server is waiting | ||
| for connections. Note that this setting applies to Windows only. |
This comment has been minimized.
This comment has been minimized.
Trott
Nov 15, 2018
Member
| for connections. Note that this setting applies to Windows only. | |
| for connections. This setting applies to Windows only. |
This comment has been minimized.
This comment has been minimized.
oyyd
force-pushed the
oyyd:net-cleanup
branch
from
1187d2b
to
a6a109e
Nov 15, 2018
This comment has been minimized.
This comment has been minimized.
|
Resume: https://ci.nodejs.org/job/node-test-pull-request/18646/
@addaleax I see that #24289 documents And does this still LGTY? |
This comment has been minimized.
This comment has been minimized.
|
Sorry about the |
oyyd
force-pushed the
oyyd:net-cleanup
branch
from
a6a109e
to
785e551
Nov 22, 2018
This comment has been minimized.
This comment has been minimized.
|
Any other thoughts on this? |
This comment has been minimized.
This comment has been minimized.
trygve-lie
reviewed
Nov 22, 2018
| rval = createServerHandle('::', port, 6, fd, flags); | ||
| ======= | ||
| rval = createServerHandle(DEFAULT_IPV6_ADDR, port, 6, fd); | ||
| >>>>>>> a6a109ee94... net: some scattered cleanup |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
oyyd
force-pushed the
oyyd:net-cleanup
branch
from
785e551
to
cba0667
Nov 22, 2018
This comment has been minimized.
This comment has been minimized.
|
@oyyd can you rebase? |
lpinca
approved these changes
Mar 13, 2019
oyyd
force-pushed the
oyyd:net-cleanup
branch
2 times, most recently
from
58c078e
to
8dc83d5
Mar 13, 2019
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Thank you. I think you can land this after a green CI. |
refack
added
the
author ready
label
Mar 13, 2019
BridgeAR
approved these changes
Mar 13, 2019
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
oyyd
closed this
Mar 14, 2019
oyyd
force-pushed the
oyyd:net-cleanup
branch
from
8dc83d5
to
107c95d
Mar 14, 2019
oyyd
reopened this
Mar 14, 2019
This comment has been minimized.
This comment has been minimized.
|
The tests on |
This comment has been minimized.
This comment has been minimized.
|
Probably was a transient issue - https://ci.nodejs.org/job/node-test-commit-arm-fanned/7205/ |
oyyd
added a commit
that referenced
this pull request
Mar 15, 2019
This comment has been minimized.
This comment has been minimized.
|
Landed in cd8b739. Thank you all! |
oyyd commentedNov 6, 2018
This commit cleans up net module, including:
handle.readableandhandle.writable. It's add in nodejs/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