mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 00:44:31 +01:00
refactor: use stdio correctly in wrapper
This commit is contained in:
parent
18ace7b906
commit
e4db80667e
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ export class ParentProcess extends Process {
|
||||||
CODE_SERVER_PARENT_PID: process.pid.toString(),
|
CODE_SERVER_PARENT_PID: process.pid.toString(),
|
||||||
NODE_OPTIONS: `--max-old-space-size=2048 ${process.env.NODE_OPTIONS || ""}`,
|
NODE_OPTIONS: `--max-old-space-size=2048 ${process.env.NODE_OPTIONS || ""}`,
|
||||||
},
|
},
|
||||||
stdio: ["ipc"],
|
stdio: ["inherit", "pipe", "pipe", "ipc"],
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue