We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be8aa38 commit ec23791Copy full SHA for ec23791
src/extension/src/serverLauncher.ts
@@ -72,10 +72,7 @@ export class ServerLauncher {
72
*/
73
private resolveTransport(transportType: TransportType): 'namedPipe' | 'stdio' {
74
if (transportType === 'auto') {
75
- // Prefer named pipes on Windows; use stdio on macOS to avoid socket quirks.
76
- if (this.platformInfo.isMacOS()) {
77
- return 'stdio';
78
- }
+ // Follow C# extension: named pipes on all platforms (Unix domain sockets on macOS/Linux).
79
return 'namedPipe';
80
}
81
return transportType;
0 commit comments