After deploying a bot on Microsoft Teams for multiple users to test, I have begun getting the above error. This has occurred in two different places. I'll post the stack traces for each: https://gist.github.com/MilesWilde/49f290a9ba6f5e0b970de76b1907bb10
The line that this is occurring on (270 of Bot.cs
) looks like this
var recognizerResult = await _services.LuisServices[DispatchKey].RecognizeAsync(turnContext, cancellationToken);
The second instance of this occurring has this stack trace: https://gist.github.com/MilesWilde/ba68c336a3687e1a2b5d5611a7a854a6
And on line 391 of SomeDialog.cs
is:
await stepContext.Context.SendActivityAsync("Alright.");
Which seems really weird because we successfully send activity messages a lot. Is there any information available about why this would start occurring with a bot once more users are accessing the bot? This hasn't happened yet when my team tests it with our deployed development version.
Note: I am using the bot framework SDK v4