Skip to content

Commit d9d8234

Browse files
teste
1 parent 7b7c040 commit d9d8234

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/managers.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,19 +582,23 @@ function connect(manager::ClusterManager, pid::Int, config::WorkerConfig)
582582
return connect(manager, pid, config)
583583
end
584584

585+
@info "CONNECT W1"
586+
585587
# master connecting to workers
586588
if config.io !== nothing
587589
(bind_addr, port::Int) = read_worker_host_port(config.io)
588-
@info "CONNECT W $bind_addr $port"
590+
@info "CONNECT W2 $bind_addr $port"
589591
pubhost = something(config.host, bind_addr)
590592
config.host = pubhost
591593
config.port = port
592594
else
595+
@info "CONNECT W3"
593596
pubhost = notnothing(config.host)
594597
port = notnothing(config.port)
595598
bind_addr = something(config.bind_addr, pubhost)
596599
end
597600

601+
@info "CONNECT W4"
598602
tunnel = something(config.tunnel, false)
599603

600604
s = split(pubhost,'@')

0 commit comments

Comments
 (0)