Open jcai849 opened 3 years ago
The poll.socket() example left me with an error at the changed line; Binding on all endpoints with connect.socket() as per the example yields the following:
poll.socket()
connect.socket()
> connect.socket(out.socket,"tcp://*:5557") Invalid argument
With associated errors:
> zmq.errno() [1] 22 > zmq.strerror() [1] "Invalid argument"
Specifying "tcp://localhost:5557" as endpoint ensures appropriate connection, and fixes the issue.
"tcp://localhost:5557"
The
poll.socket()
example left me with an error at the changed line; Binding on all endpoints withconnect.socket()
as per the example yields the following:With associated errors:
Specifying
"tcp://localhost:5557"
as endpoint ensures appropriate connection, and fixes the issue.