Skip to content

Commit bf7df71

Browse files
...
1 parent 58a96df commit bf7df71

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/cluster.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1387,6 +1387,7 @@ end
13871387
function init_bind_addr()
13881388
opts = JLOptions()
13891389
if opts.bindto != C_NULL
1390+
@info "A1: $(opt.bindto)"
13901391
bind_to = split(unsafe_string(opts.bindto), ":")
13911392
bind_addr = string(parse(IPAddr, bind_to[1]))
13921393
if length(bind_to) > 1
@@ -1395,6 +1396,7 @@ function init_bind_addr()
13951396
bind_port = 0
13961397
end
13971398
else
1399+
@info "A2: $(getipaddrs(IPv4; loopback = false))"
13981400
bind_port = 0
13991401
try
14001402
ips = getipaddrs(IPv4; loopback = false)

src/managers.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,6 @@ function connect_to_worker(host::AbstractString, port::Integer)
706706
# host may be a stringified ipv4 / ipv6 address or a dns name
707707
bind_addr = nothing
708708
try
709-
@info "1: PARSE $host - $(getalladdrinfo(host))"
710709
bind_addr = parse(IPAddr,host)
711710
catch
712711
bind_addr = getaddrinfo(host)

0 commit comments

Comments
 (0)