I'm attempting to build a discord bot using Commands, and while the commands are registering (I can see them in autocomplete), I'm seeing this exception rather regularly:
System.Threading.Tasks.TaskCanceledException: A task was canceled.
at DSharpPlus.Net.Gateway.GatewayClient.HandleEventsAsync(CancellationToken ct) : A task was canceled.
at DSharpPlus.Net.Gateway.GatewayClient.HandleEventsAsync(CancellationToken ct)```
I don't see any other errors in the logs, but attempting to use my commands results in "the application did not respond", and setting a breakpoint in the command results in the breakpoint not being hit, making me think this error is preventing the bot from receiving commands.