Getting the below exception when sending message to client using Groups.
How do I avoid this or gracefully handle this?
Like below
public static void Notify(long Id, params string[] keys)
{
GetHubContext<CountsHub>()
.Clients
.Group(GroupKey.FormatWith(Id))
.notify(GetCounts(Id, default, keys));
}
System.InvalidOperationException: No service connection found when sending message
File "AzureTransport.cs", line 106, in Task AzureTransport.Send(object value)
throw new InvalidOperationException("No service connection found when sending message");
File "/_/src/Microsoft.AspNet.SignalR.Core/Hubs/HubDispatcher.cs", line 235, col 21, in Task HubDispatcher.InvokeHubPipeline(IHub hub, IJsonValue[] parameterValues, MethodDescriptor methodDescriptor, HubRequest hubRequest, StateChangeTracker tracker)+(Task<object> task) => { } [1]
File "/_/src/Microsoft.AspNet.SignalR.Core/TaskAsyncHelper.cs", line 1006, col 17, in TResult TaskAsyncHelper.RunWithPreservedCulture<T1, T2, TResult>(CulturePair preservedCulture, Func<T1, T2, TResult> func, T1 arg1, T2 arg2)
File "/_/src/Microsoft.AspNet.SignalR.Core/TaskAsyncHelper.cs", line 1017, col 13, in TResult TaskAsyncHelper.RunWithPreservedCulture<T, TResult>(CulturePair preservedCulture, Func<T, TResult> func, T arg)
File "/_/src/Microsoft.AspNet.SignalR.Core/TaskAsyncHelper.cs", line 1071, col 43, in Task TaskAsyncHelper.ContinueWithPreservedCulture(Task task, Action<Task> continuationAction, TaskContinuationOptions continuationOptions)+(Task<T> t) => { }
?, in void ContinuationResultTaskFromResultTask<TAntecedentResult, TResult>.InnerInvoke()
?, in void Task.Execute()