From 3de55dfd2152d85b958c3f2f5e37fedf360f4753 Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Tue, 11 Aug 2020 10:29:41 +1200 Subject: [PATCH] Increase HTTP/2 stream pool max size to 100 (#24712) --- src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs b/src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs index 136e8d3cf4..eb43929378 100644 --- a/src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs +++ b/src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs @@ -71,7 +71,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http2 internal Http2StreamStack StreamPool; internal const int InitialStreamPoolSize = 5; - internal const int MaxStreamPoolSize = 40; + internal const int MaxStreamPoolSize = 100; public Http2Connection(HttpConnectionContext context) {