From 0af0318f43f5b1129a791ee0e199ad14fa4e012a Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 10 Jan 2017 12:30:22 -0800 Subject: [PATCH] fix rebase error re-removed error handling from HubEndpoint, since HttpConnectionDispatcher handles it --- src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs b/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs index 7e06623022..bfa74fc2d0 100644 --- a/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs +++ b/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs @@ -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; } }