Merge branch 'benaadams/flush' into dev
This commit is contained in:
commit
815db3d210
|
|
@ -125,6 +125,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Adapter.Internal
|
||||||
return _output.FlushAsync(cancellationToken);
|
return _output.FlushAsync(cancellationToken);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private ValueTask<int> ReadAsync(ArraySegment<byte> buffer)
|
private ValueTask<int> ReadAsync(ArraySegment<byte> buffer)
|
||||||
{
|
{
|
||||||
return _input.ReadAsync(buffer.Array, buffer.Offset, buffer.Count);
|
return _input.ReadAsync(buffer.Array, buffer.Offset, buffer.Count);
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Server.Kestrel.Internal.Http;
|
using Microsoft.AspNetCore.Server.Kestrel.Internal.Http;
|
||||||
using Microsoft.AspNetCore.Server.Kestrel.Internal.Infrastructure;
|
using Microsoft.AspNetCore.Server.Kestrel.Internal.Infrastructure;
|
||||||
using Microsoft.Extensions.Internal;
|
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Server.Kestrel.Adapter.Internal
|
namespace Microsoft.AspNetCore.Server.Kestrel.Adapter.Internal
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue