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
SgxZmqClient::doZmqRequestReply is called from different threads, but according to ZMQ manual, it should not be. this can lead to unpredictable consequences.
Don’t share ZeroMQ sockets between threads. ZeroMQ sockets are not threadsafe. Technically it’s possible to migrate a socket from one thread to another but it demands skill. The only place where it’s remotely sane to share sockets between threads are in language bindings that need to do magic like garbage collection on sockets.
SgxZmqClient::doZmqRequestReply
is called from different threads, but according to ZMQ manual, it should not be. this can lead to unpredictable consequences.(https://zguide.zeromq.org/docs/chapter2/#Multithreading-with-ZeroMQ)
The text was updated successfully, but these errors were encountered: