File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2509,10 +2509,10 @@ index 0000000000000000000000000000000000000000..a6c1f9f848f441b761397ba78e2fef60
2509
2509
+ }
2510
2510
diff --git a/src/vs/server/node/connection.ts b/src/vs/server/node/connection.ts
2511
2511
new file mode 100644
2512
- index 0000000000000000000000000000000000000000..fb7999ee343ddfd5f225a5ef727c9e559059fb58
2512
+ index 0000000000000000000000000000000000000000..6b7c5ffd2ef2f321e32b6ebf1e6ad93b9a99c80f
2513
2513
--- /dev/null
2514
2514
+++ b/src/vs/server/node/connection.ts
2515
- @@ -0,0 +1,189 @@
2515
+ @@ -0,0 +1,192 @@
2516
2516
+ import { field, Logger, logger } from '@coder/logger';
2517
2517
+ import * as cp from 'child_process';
2518
2518
+ import { VSBuffer } from 'vs/base/common/buffer';
@@ -2644,6 +2644,9 @@ index 0000000000000000000000000000000000000000..fb7999ee343ddfd5f225a5ef727c9e55
2644
2644
+ this.logger.trace('Spawning extension host...');
2645
2645
+ const proc = cp.fork(
2646
2646
+ FileAccess.asFileUri('bootstrap-fork', require).fsPath,
2647
+ + // While not technically necessary, makes it easier to tell which process
2648
+ + // bootstrap-fork is executing. Can also do pkill -f extensionHost
2649
+ + // Other spawns in the VS Code codebase behave similarly.
2647
2650
+ [ '--type=extensionHost' ],
2648
2651
+ {
2649
2652
+ env: {
You can’t perform that action at this time.
0 commit comments