Skip to content

Commit 8b5e460

Browse files
teste
1 parent a3b2ce7 commit 8b5e460

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/cluster.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ end
14271427

14281428
function init_parallel()
14291429
start_gc_msgs_task(role = :master) # TO CHECK
1430-
start_gc_msgs_task(role = :worker) # TO CHECK
1430+
start_gc_msgs_task(role = :worker) # TO CHECK
14311431

14321432
# start in "head node" mode, if worker, will override later.
14331433
#global PGRP

src/managers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ function connect_to_worker(host::AbstractString, port::Integer)
701701
bind_addr = getaddrinfo(host)
702702
end
703703

704-
@info "connect_to_worker: $host $port"
704+
@info "connect_to_worker: $host $port $bind_addr"
705705

706706
iptype = typeof(bind_addr)
707707
sock = socket_reuse_port(iptype)

src/process_messages.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function message_handler_loop(r_stream::IO, w_stream::IO, incoming::Bool; role=
170170
while true
171171
reset_state(serializer)
172172
header = deserialize_hdr_raw(r_stream)
173-
println("header: ", header)
173+
#println("header: ", header)
174174

175175
try
176176
msg = invokelatest(deserialize_msg, serializer)
@@ -207,7 +207,7 @@ function message_handler_loop(r_stream::IO, w_stream::IO, incoming::Bool; role=
207207
end
208208
readbytes!(r_stream, boundary, length(MSG_BOUNDARY))
209209

210-
println("got msg: ", typeof(msg))
210+
#println("got msg: ", typeof(msg))
211211
handle_msg(msg, header, r_stream, w_stream, version; role = role)
212212
end
213213
catch e

0 commit comments

Comments
 (0)