Skip to content

Commit 5e3fb28

Browse files
authored
Merge pull request #110 from dihm/zmq_fix
Modify default zmq binding address to use `tcp://*`
2 parents b042db4 + a9537dc commit 5e3fb28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

labscript_utils/ls_zprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def __init__(
167167
port=None,
168168
dtype='pyobj',
169169
pull_only=False,
170-
bind_address='tcp://0.0.0.0',
170+
bind_address='tcp://*',
171171
timeout_interval=None,
172172
**kwargs
173173
):

labscript_utils/qtwidgets/outputbox.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ def __init__(self, container, scrollback_lines=1000):
2929
container=container,
3030
scrollback_lines=scrollback_lines,
3131
zmq_context=context,
32-
bind_address='tcp://0.0.0.0',
32+
bind_address='tcp://*',
3333
)

0 commit comments

Comments
 (0)