fix rebase error

re-removed error handling from HubEndpoint, since HttpConnectionDispatcher handles it
This commit is contained in:
Andrew Stanton-Nurse 2017-01-10 12:30:22 -08:00 committed by Andrew Stanton-Nurse
parent b977c871ae
commit 0af0318f43
1 changed files with 0 additions and 2 deletions

View File

@ -108,8 +108,6 @@ namespace Microsoft.AspNetCore.SignalR
catch (Exception ex)
{
_logger.LogError(0, ex, "Error when invoking OnConnectedAsync on hub.");
connection.Transport.Input.Complete(ex);
connection.Transport.Output.Complete(ex);
throw;
}
}