Don't log ODEs thrown from _abortedCts.Cancel

This commit is contained in:
Ben Adams 2015-11-20 00:30:08 +00:00
parent 3c7431aa35
commit 174ec739bb
1 changed files with 9 additions and 1 deletions

View File

@ -199,7 +199,15 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
ConnectionControl.End(ProduceEndType.SocketDisconnect);
SocketInput.AbortAwaiting();
_abortedCts?.Cancel();
try
{
_abortedCts?.Cancel();
}
catch (ObjectDisposedException)
{
// Don't log ODEs thrown from _abortedCts.Cancel()
// If _abortedCts is disposed, the app has already completed.
}
}
catch (Exception ex)
{