Fix build break

This commit is contained in:
Matt Perry 2017-05-03 22:41:48 -04:00 committed by Steve Sanderson
parent 02b31d05a2
commit cdbbbcc473
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ namespace Microsoft.AspNetCore.SpaServices.Webpack
using (var responseStream = await responseMessage.Content.ReadAsStreamAsync())
{
await responseStream.CopyToAsync(context.Response.Body, BUFFER_SIZE, context.RequestAborted);
await responseStream.CopyToAsync(context.Response.Body, DefaultHttpBufferSize, context.RequestAborted);
}
return true;