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
:~/ZeroMQ-Perl$ perl xt/thread_0mq.pl inproc://asd 200 10
[local] Trying to start at inproc://asd
[remote]Trying to start at inproc://asd
Thread 2 terminated abnormally: Caught C++ exception of type or derived from 'zmq::error_t': Connection refused at xt/thread_0mq.pl line 54.
The text was updated successfully, but these errors were encountered:
This seems to be because 0MQ Contexts aren't shared between perl ithreads. They could be shared in principle, but would need guards to prevent double-frees due to the destructors being called. This is totally possible, I just haven't had the time to do it. Use ipc or tcp transports instead until somebody fixes this.
http://github.com/kthakore/ZeroMQ-Perl/commit/9820dc946f45e56c4d5472477001e7e3c8066a22
:~/ZeroMQ-Perl$ perl xt/thread_0mq.pl inproc://asd 200 10
[local] Trying to start at inproc://asd
[remote]Trying to start at inproc://asd
Thread 2 terminated abnormally: Caught C++ exception of type or derived from 'zmq::error_t': Connection refused at xt/thread_0mq.pl line 54.
The text was updated successfully, but these errors were encountered: