Skip to content

Commit 80ec900

Browse files
committed
fixup! vscode: Remove unnecessary argument to extensionHostProcess
1 parent bd6917d commit 80ec900

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

ci/dev/vscode.patch

+6-3
Original file line numberDiff line numberDiff line change
@@ -2519,10 +2519,10 @@ index 0000000000000000000000000000000000000000..a6c1f9f848f441b761397ba78e2fef60
25192519
+}
25202520
diff --git a/src/vs/server/node/connection.ts b/src/vs/server/node/connection.ts
25212521
new 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,

0 commit comments

Comments
 (0)