Skip to content

Commit 3de55df

Browse files
authored
Increase HTTP/2 stream pool max size to 100 (#24712)
1 parent bbf7c87 commit 3de55df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ internal partial class Http2Connection : IHttp2StreamLifetimeHandler, IHttpHeade
7171
internal Http2StreamStack StreamPool;
7272

7373
internal const int InitialStreamPoolSize = 5;
74-
internal const int MaxStreamPoolSize = 40;
74+
internal const int MaxStreamPoolSize = 100;
7575

7676
public Http2Connection(HttpConnectionContext context)
7777
{

0 commit comments

Comments
 (0)