Skip to content

Commit

Permalink
revert window size
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotalik committed Mar 8, 2019
1 parent a18df76 commit 897e275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Servers/Kestrel/Core/src/Internal/Http2/Http2Stream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Http2Stream(Http2StreamContext context)
this,
context.ServiceContext.Log);

RequestBodyPipe = CreateRequestBodyPipe(int.MaxValue); // TODO Once corefx is updated remove this
RequestBodyPipe = CreateRequestBodyPipe(context.ServerPeerSettings.InitialWindowSize);
Output = _http2Output;
}

Expand Down

0 comments on commit 897e275

Please sign in to comment.