Port C# client perf fix to release (#2189)

This commit is contained in:
BrennanConroy 2018-05-02 21:53:39 -07:00 committed by GitHub
parent b1010b7bd5
commit 8c7f33a6d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -530,9 +530,6 @@ namespace Microsoft.AspNetCore.SignalR.Client
private async Task DispatchInvocationAsync(InvocationMessage invocation)
{
// Make sure we get off the main event loop before we dispatch into user code
await AwaitableThreadPool.Yield();
// Find the handler
if (!_handlers.TryGetValue(invocation.Target, out var invocationHandlerList))
{