Skip to content

Commit eb045e7

Browse files
teste finished
1 parent 21a1c0a commit eb045e7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/managers.jl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -573,31 +573,31 @@ workers.
573573
function connect(manager::ClusterManager, pid::Int, config::WorkerConfig)
574574
if config.connect_at !== nothing
575575
# this is a worker-to-worker setup call.
576-
(rhost, rport) = notnothing(config.connect_at)::Tuple{String, Int}
577-
config.host = rhost
578-
config.port = rport
579-
config.connect_at = nothing
580-
#return connect_w2w(pid, config)
581-
return connect(manager, pid, config)
576+
#(rhost, rport) = notnothing(config.connect_at)::Tuple{String, Int}
577+
#config.host = rhost
578+
#config.port = rport
579+
#config.connect_at = nothing
580+
return connect_w2w(pid, config)
581+
#return connect(manager, pid, config)
582582
end
583583

584-
@info "CONNECT W1"
584+
#@info "CONNECT W1"
585585

586586
# master connecting to workers
587587
if config.io !== nothing
588588
(bind_addr, port::Int) = read_worker_host_port(config.io)
589-
@info "CONNECT W2 $bind_addr $port"
589+
#@info "CONNECT W2 $bind_addr $port"
590590
pubhost = something(config.host, bind_addr)
591591
config.host = pubhost
592592
config.port = port
593593
else
594-
@info "CONNECT W3"
594+
#@info "CONNECT W3"
595595
pubhost = notnothing(config.host)
596596
port = notnothing(config.port)
597597
bind_addr = something(config.bind_addr, pubhost)
598598
end
599599

600-
@info "CONNECT W4"
600+
#@info "CONNECT W4"
601601
tunnel = something(config.tunnel, false)
602602

603603
s = split(pubhost,'@')

0 commit comments

Comments
 (0)