We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b3ab8 commit aba3750Copy full SHA for aba3750
src/Infrastructure/BotSharp.Core.Realtime/Services/RealtimeHub.cs
@@ -99,7 +99,9 @@ await _completer.Connect(_conn,
99
await HookEmitter.Emit<IRoutingHook>(_services, async hook => await hook.OnRoutingInstructionReceived(instruction, message));
100
}
101
102
- await routing.InvokeFunction(message.FunctionName, message);
+ var delay = Task.Delay(1000);
103
+ routing.InvokeFunction(message.FunctionName, message);
104
+ await delay;
105
106
else
107
{
0 commit comments