We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d4f3d commit 15c4be1Copy full SHA for 15c4be1
1 file changed
PowerShell.MCP/Services/NamedPipeServer.cs
@@ -23,7 +23,7 @@ public static class ExecutionState
23
public class NamedPipeServer : IDisposable
24
{
25
public const string PipeName = "PowerShell.MCP.Communication";
26
- private const int MaxConcurrentConnections = 2; // Two pipe instances
+ private const int MaxConcurrentConnections = 1; // Single pipe instance
27
private readonly CancellationTokenSource _internalCancellation = new();
28
private readonly List<Task> _serverTasks = new();
29
private bool _disposed = false;
0 commit comments