We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Connecting a (Dealer) socket with a DNS name raises ValueError: 'example.com' does not appear to be an IPv4 or IPv6 address:
ValueError: 'example.com' does not appear to be an IPv4 or IPv6 address
import zmq, aiozmq, asyncio def test(): socket = yield from aiozmq.create_zmq_stream(zmq.DEALER) socket.transport.setsockopt(zmq.IDENTITY, b'myidentity') yield from socket.transport.connect('tcp://example.com:1234') asyncio.get_event_loop().run_until_complete(test())
The following works, however:
context = zmq.Context() zmq_socket = context.socket(zmq.DEALER) zmq_socket.setsockopt(zmq.IDENTITY, b'myidentity') zmq_socket.connect('tcp://example.com:1234') socket = yield from aiozmq.create_zmq_stream(zmq.DEALER, zmq_sock=zmq_socket)
Versions: aiozmq==0.6.1 pyzmq==14.7.0
The text was updated successfully, but these errors were encountered:
ee77ae0
Fixed. Try new 0.7 release
Sorry, something went wrong.
No branches or pull requests
Connecting a (Dealer) socket with a DNS name raises
ValueError: 'example.com' does not appear to be an IPv4 or IPv6 address
:The following works, however:
Versions:
aiozmq==0.6.1
pyzmq==14.7.0
The text was updated successfully, but these errors were encountered: