You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On next, when handling ShardRunnerMessage variants that send messages to the websocket, encountering an error will shut down the shard without logging any sort of warning or error. The shard is not queued to be restarted in that case either:
On next, when handling
ShardRunnerMessage
variants that send messages to the websocket, encountering an error will shut down the shard without logging any sort of warning or error. The shard is not queued to be restarted in that case either:serenity/src/gateway/sharding/shard_runner.rs
Lines 267 to 319 in 5209741
These cases should unconditionally return
true
, instead of returning.is_ok()
, and log the error.Alternatively, it could bubble the error back up the original caller, but that might add significant complexity.
The text was updated successfully, but these errors were encountered: