Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tmds committed Nov 18, 2015
1 parent 592d802 commit 2cdd659
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Microsoft.AspNet.Server.Kestrel/Http/Frame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public async Task RequestProcessingAsync()
// If _requestAbort is set, the connection has already been closed.
if (!_requestAborted)
{
await ProduceEnd();
await ProduceEnd();

// Finish reading the request body in case the app did not.
await messageBody.Consume();
Expand Down Expand Up @@ -307,15 +307,15 @@ public async Task RequestProcessingAsync()
// If _requestAborted is set, the connection has already been closed.
if (!_requestAborted)
{
// Inform client no more data will ever arrive
ConnectionControl.End(ProduceEndType.SocketShutdownSend);
// Inform client no more data will ever arrive
ConnectionControl.End(ProduceEndType.SocketShutdownSend);

// Wait for client to either disconnect or send unexpected data
await SocketInput;
// Wait for client to either disconnect or send unexpected data
await SocketInput;

// Dispose socket
ConnectionControl.End(ProduceEndType.SocketDisconnect);
}
// Dispose socket
ConnectionControl.End(ProduceEndType.SocketDisconnect);
}
}
catch (Exception ex)
{
Expand Down

0 comments on commit 2cdd659

Please sign in to comment.