File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2519,10 +2519,10 @@ index 0000000000000000000000000000000000000000..a6c1f9f848f441b761397ba78e2fef60
2519
2519
+ }
2520
2520
diff --git a/src/vs/server/node/connection.ts b/src/vs/server/node/connection.ts
2521
2521
new file mode 100644
2522
- index 0000000000000000000000000000000000000000..487a599ab3db42b48adcd7f1a37511ab050655ad
2522
+ index 0000000000000000000000000000000000000000..6b7c5ffd2ef2f321e32b6ebf1e6ad93b9a99c80f
2523
2523
--- /dev/null
2524
2524
+++ b/src/vs/server/node/connection.ts
2525
- @@ -0,0 +1,189 @@
2525
+ @@ -0,0 +1,192 @@
2526
2526
+ import { field, Logger, logger } from '@coder/logger';
2527
2527
+ import * as cp from 'child_process';
2528
2528
+ import { VSBuffer } from 'vs/base/common/buffer';
@@ -2654,7 +2654,10 @@ index 0000000000000000000000000000000000000000..487a599ab3db42b48adcd7f1a37511ab
2654
2654
+ this.logger.trace('Spawning extension host...');
2655
2655
+ const proc = cp.fork(
2656
2656
+ 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' ],
2658
2661
+ {
2659
2662
+ env: {
2660
2663
+ ...process.env,
You can’t perform that action at this time.
0 commit comments