src: write named pipe info in diagnostic report#38637
Closed
legendecas wants to merge 10 commits intonodejs:masterfrom
Closed
src: write named pipe info in diagnostic report#38637legendecas wants to merge 10 commits intonodejs:masterfrom
legendecas wants to merge 10 commits intonodejs:masterfrom
Conversation
6c0cadd to
6ae29a1
Compare
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`.
6ae29a1 to
534db1a
Compare
This comment has been minimized.
This comment has been minimized.
mscdex
reviewed
May 11, 2021
richardlau
reviewed
May 12, 2021
richardlau
reviewed
May 12, 2021
richardlau
approved these changes
May 12, 2021
This comment has been minimized.
This comment has been minimized.
addaleax
requested changes
May 12, 2021
gireeshpunathil
approved these changes
May 16, 2021
This comment has been minimized.
This comment has been minimized.
addaleax
approved these changes
May 17, 2021
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Member
Author
|
Just set up a windows environment to test around the test suite compatibility issue. I will update once the test gets fixed. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Member
Author
|
@addaleax @gireeshpunathil @richardlau updated to pass windows tests. PTAL :) |
Member
|
LGTM! |
richardlau
reviewed
May 19, 2021
| // Exit on loss of parent process | ||
| const exit = () => process.exit(2); | ||
| process.on('disconnect', exit); | ||
| function pipeName(windowsExtended) { |
Member
There was a problem hiding this comment.
This function is only called with windowsExtended set to true so the parameter is superfluous?
Member
Author
There was a problem hiding this comment.
Updated common.PIPE to use '\\?\' prefix. Most likely there should not be any difference regarding the pipe API. However my local windows VM doesn't behave well and lots of unrelated test cases were falling for unknown reasons. So just pushed the updates and let's see what the CI says.
richardlau
approved these changes
May 19, 2021
This comment has been minimized.
This comment has been minimized.
various pipe connect API failed in parallel/test-net-connect-options-path.
This comment has been minimized.
This comment has been minimized.
Collaborator
|
Collaborator
|
Collaborator
|
legendecas
added a commit
that referenced
this pull request
May 21, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: #38637 Fixes: #38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
Member
Author
|
Landed in 50f076c |
danielleadams
pushed a commit
that referenced
this pull request
May 31, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: #38637 Fixes: #38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
Merged
richardlau
pushed a commit
that referenced
this pull request
Jul 16, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: #38637 Fixes: #38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
richardlau
pushed a commit
that referenced
this pull request
Jul 16, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: #38637 Fixes: #38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
richardlau
pushed a commit
that referenced
this pull request
Jul 19, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: #38637 Fixes: #38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
richardlau
pushed a commit
that referenced
this pull request
Jul 20, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: #38637 Fixes: #38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
Merged
foxxyz
pushed a commit
to foxxyz/node
that referenced
this pull request
Oct 18, 2021
Writes pipe handles with `uv_pipe_getsockname()` and `uv_pipe_getpeername()`. PR-URL: nodejs#38637 Fixes: nodejs#38625 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Writes pipe handles with
uv_pipe_getsockname()anduv_pipe_getpeername().Fixes: #38625