The server currently has a feature to split large messages into chunks if a max_packet_size is set. In theory, it should currently be possible to send another message while these message chunks are being sent, but doing so would disrupt that message and result in corrupted data being sent to the client, possibly hanging the connection. Investigate if this is actually an issue and fix it if it is.
The server currently has a feature to split large messages into chunks if a
max_packet_size
is set. In theory, it should currently be possible to send another message while these message chunks are being sent, but doing so would disrupt that message and result in corrupted data being sent to the client, possibly hanging the connection. Investigate if this is actually an issue and fix it if it is.