Increase HTTP/2 stream pool max size to 100 (#24712)

This commit is contained in:
James Newton-King 2020-08-11 10:29:41 +12:00 committed by GitHub
parent bbf7c8780c
commit 3de55dfd21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{