File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2519,10 +2519,10 @@ index 0000000000000000000000000000000000000000..a6c1f9f848f441b761397ba78e2fef60
25192519+ }
25202520diff --git a/src/vs/server/node/connection.ts b/src/vs/server/node/connection.ts
25212521new file mode 100644
2522- index 0000000000000000000000000000000000000000..487a599ab3db42b48adcd7f1a37511ab050655ad
2522+ index 0000000000000000000000000000000000000000..6b7c5ffd2ef2f321e32b6ebf1e6ad93b9a99c80f
25232523--- /dev/null
25242524+++ b/src/vs/server/node/connection.ts
2525- @@ -0,0 +1,189 @@
2525+ @@ -0,0 +1,192 @@
25262526+ import { field, Logger, logger } from '@coder/logger';
25272527+ import * as cp from 'child_process';
25282528+ import { VSBuffer } from 'vs/base/common/buffer';
@@ -2654,7 +2654,10 @@ index 0000000000000000000000000000000000000000..487a599ab3db42b48adcd7f1a37511ab
26542654+ this.logger.trace('Spawning extension host...');
26552655+ const proc = cp.fork(
26562656+ FileAccess.asFileUri('bootstrap-fork', require).fsPath,
2657- + [],
2657+ + // While not technically necessary, makes it easier to tell which process
2658+ + // bootstrap-fork is executing. Can also do pkill -f extensionHost
2659+ + // Other spawns in the VS Code codebase behave similarly.
2660+ + [ '--type=extensionHost' ],
26582661+ {
26592662+ env: {
26602663+ ...process.env,
You can’t perform that action at this time.
0 commit comments