Skip to content

Commit 0427fc2

Browse files
committed
⚡Fix max limit downwards
1 parent 01deb01 commit 0427fc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ModuleFast.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ function New-ModuleFastClient {
249249
#The max connections are only in case we end up using HTTP/1.1 instead of HTTP/2 for whatever reason. HTTP/2 will only use one connection (but multiple streams) per the spec unless EnableMultipleHttp2Connections is specified
250250
MaxConnectionsPerServer = 10
251251
#Reduce the amount of round trip confirmations by setting window size to 64MB. ModuleFast should primarily be used on reliable fast connections. Dynamic scaling will reduce this if needed.
252-
InitialHttp2StreamWindowSize = 65535000
252+
InitialHttp2StreamWindowSize = 16777216
253253
AutomaticDecompression = 'All'
254254
}
255255

0 commit comments

Comments
 (0)