@@ -573,31 +573,31 @@ workers.
573
573
function connect (manager:: ClusterManager , pid:: Int , config:: WorkerConfig )
574
574
if config. connect_at != = nothing
575
575
# 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)
582
582
end
583
583
584
- @info " CONNECT W1"
584
+ # @info "CONNECT W1"
585
585
586
586
# master connecting to workers
587
587
if config. io != = nothing
588
588
(bind_addr, port:: Int ) = read_worker_host_port (config. io)
589
- @info " CONNECT W2 $bind_addr $port "
589
+ # @info "CONNECT W2 $bind_addr $port"
590
590
pubhost = something (config. host, bind_addr)
591
591
config. host = pubhost
592
592
config. port = port
593
593
else
594
- @info " CONNECT W3"
594
+ # @info "CONNECT W3"
595
595
pubhost = notnothing (config. host)
596
596
port = notnothing (config. port)
597
597
bind_addr = something (config. bind_addr, pubhost)
598
598
end
599
599
600
- @info " CONNECT W4"
600
+ # @info "CONNECT W4"
601
601
tunnel = something (config. tunnel, false )
602
602
603
603
s = split (pubhost,' @' )
0 commit comments