Merge pull request #47242 from aesposito91/2018.3

PY3 fix for zeromq setsockopt
This commit is contained in:
Nicole Thomas 2018-04-23 12:38:09 -04:00 committed by GitHub
commit 73525d1460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,7 @@ def _zmq(address, port, **kwargs):
addr=address,
port=port)
)
socket.setsockopt(zmq.SUBSCRIBE, '')
socket.setsockopt(zmq.SUBSCRIBE, b'')
return socket.recv