Remove capture of "this" from local function (#7467)

This commit is contained in:
Stephen Halter 2019-02-14 00:21:39 -08:00 committed by GitHub
parent 94109e6655
commit 132a1ad31b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http
producer._unflushedBytes = 0;
// If there is an empty write, we still need to update the current chunk
_currentChunkMemoryUpdated = false;
producer._currentChunkMemoryUpdated = false;
return producer._flusher.FlushAsync(producer._minResponseDataRateFeature.MinDataRate, bytesWritten, producer, token);
}