mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #47242 from aesposito91/2018.3
PY3 fix for zeromq setsockopt
This commit is contained in:
commit
73525d1460
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue