Arnaud Loonstra
Arnaud Loonstra
https://github.com/zeromq/czmq/issues/2158
Does that help?
Can you add these instructions through a PR?
I think you'll need a better code snippet to explain the error. We can't tell what's going on from this.
so what are you suggesting?
You're not very verbose. Are you suggesting that: ``` ctx = kwargs.get('ctx') if ctx == None: ctx = zmq.Context() self._ctx = ctx ``` should be reduced to ``` self._ctx =...
depends on which bind, the broadcasting or the communicating sockets. zbeacon binds on all (should): https://github.com/zeromq/pyre/blob/master/pyre/zbeacon.py#L120 the receiving tcp socket is set here: https://github.com/zeromq/pyre/blob/master/pyre/pyre_node.py#L80 you could modify those?
We should mimic Zyre's behaviour. I'm not sure what that is currently. In general we should raise an exception so the user can decide. Zyre uses zsys's udp methods: https://github.com/zeromq/czmq/blob/master/src/zsys.c#L889...
This is rather a question for Zyre. Pyre just follows the same Zyre API. Could you open this issue in the Zyre project? https://github.com/zeromq/zyre
Yes this might be the case. Pyre hasn't been keeping up with Zyre. Either you only use Pyre, or you use Zyre with its included python binding which I would...