-
-
Notifications
You must be signed in to change notification settings - Fork 35.6k
IPC direct writing fails on WindowsΒ #17405
Copy link
Copy link
Closed
Labels
child_processIssues and PRs related to the child_process subsystem.Issues and PRs related to the child_process subsystem.docIssues and PRs related to the documentations.Issues and PRs related to the documentations.
Metadata
Metadata
Assignees
Labels
child_processIssues and PRs related to the child_process subsystem.Issues and PRs related to the child_process subsystem.docIssues and PRs related to the documentations.Issues and PRs related to the documentations.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Using a fie descriptor directly to send IPC messages is broken on
Windows:
x.js:y.js:On Linux, this works fine, but on Windows I'm getting:
If I change
y.jsto useprocess.sendit works fine again. (There'sno reason to avoid it, but we want to get IPC messages from a python
subprocess, which fails in the same way.)