Skip to content

Commit

Permalink
revert 1
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiGlobus committed Nov 26, 2024
1 parent a284a5f commit 53a9deb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(
self.zmq_socket.setsockopt(zmq.SNDTIMEO, SNDTIMEO)
if linger is not None:
self.zmq_socket.setsockopt(zmq.LINGER, linger)
self.zmq_socket.setsockopt(zmq.IPV6, True)
# self.zmq_socket.setsockopt(zmq.IPV6, True)

# all zmq setsockopt calls must be done before bind/connect is called
if self.mode == "server":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def __init__(
self.funcx_task_socket = self.context.socket(zmq.ROUTER)
self.funcx_task_socket.setsockopt(zmq.IPV6, True)
self.funcx_task_socket.set_hwm(0)
self.address = "::1"
self.address = "127.0.0.1"
self.worker_port = self.funcx_task_socket.bind_to_random_port(
"tcp://*",
min_port=self.internal_worker_port_range[0],
Expand Down

0 comments on commit 53a9deb

Please sign in to comment.