From f546f1635615721774c024530ee308fee14bbc6b Mon Sep 17 00:00:00 2001 From: David Fowler Date: Tue, 21 Mar 2017 03:21:31 -0700 Subject: [PATCH] Forgot to WriteFast in SocketOutput (#1527) --- .../Internal/Http/SocketOutput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/SocketOutput.cs b/src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/SocketOutput.cs index ef74217d12..2017b1297b 100644 --- a/src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/SocketOutput.cs +++ b/src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/SocketOutput.cs @@ -89,7 +89,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Internal.Http ChunkWriter.WriteBeginChunkBytes(ref writableBuffer, buffer.Count); } - writableBuffer.Write(buffer); + writableBuffer.WriteFast(buffer); if (chunk) {