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
I'm using a router dealer socket pair. I use NetLimiter to limit upload and download speeds to 1kbit/s SendMultipartMessage eventually hangs infinitely. I've also tried TrySendMultipartMessage with a timeout and it still hangs infinitely.
routerSocket.SendReady += (s, a) =>
{
var netMqMessage = new NetMQMessage();
netMqMessage.Append(socketIdentity);
netMqMessage.AppendEmptyFrame();
netMqMessage.Append(payload);
a.Socket.SendMultipartMessage(netMqMessage);
};