From 29775ee89313539d2988004bc7da093d71e625ad Mon Sep 17 00:00:00 2001 From: Stephen Halter Date: Tue, 3 Jan 2023 14:57:50 -0800 Subject: [PATCH] Remove note about increasing MaximumParallelInvocationsPerClient As of 7.0-rc1, this is no longer necessary --- aspnetcore/signalr/hubs.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/aspnetcore/signalr/hubs.md b/aspnetcore/signalr/hubs.md index dc9d84688818..bad5e48760b2 100644 --- a/aspnetcore/signalr/hubs.md +++ b/aspnetcore/signalr/hubs.md @@ -634,11 +634,6 @@ public class ChatHub : Hub } ``` -> [!NOTE] -> Using `InvokeAsync` from a Hub method requires setting the [`MaximumParallelInvocationsPerClient`](xref:signalr/configuration#configure-server-options) option to a value greater than 1. -> -> This will be addressed in a future release. For more information, see [Support returning values from client invocations](https://github.com/dotnet/aspnetcore/issues/5280). - The second way is to call `Client(...)` on an instance of [`IHubContext`](xref:signalr/hubcontext): ```csharp