Http1OutputProducer Reset sequentially (#9203)
This commit is contained in:
parent
4f57a4af14
commit
2dc5694ecd
|
|
@ -481,10 +481,11 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http
|
||||||
{
|
{
|
||||||
Debug.Assert(_currentSegmentOwner == null);
|
Debug.Assert(_currentSegmentOwner == null);
|
||||||
Debug.Assert(_completedSegments == null || _completedSegments.Count == 0);
|
Debug.Assert(_completedSegments == null || _completedSegments.Count == 0);
|
||||||
_autoChunk = false;
|
// Cleared in sequential address ascending order
|
||||||
_startCalled = false;
|
|
||||||
_currentChunkMemoryUpdated = false;
|
|
||||||
_currentMemoryPrefixBytes = 0;
|
_currentMemoryPrefixBytes = 0;
|
||||||
|
_autoChunk = false;
|
||||||
|
_currentChunkMemoryUpdated = false;
|
||||||
|
_startCalled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ValueTask<FlushResult> WriteAsync(
|
private ValueTask<FlushResult> WriteAsync(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue