We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a2bb4 commit 50c4fe8Copy full SHA for 50c4fe8
src/cluster.jl
@@ -171,7 +171,7 @@ function check_worker_state(w::Worker)
171
end
172
173
174
-exec_conn_func(id::Int) = exec_conn_func(worker_from_id(id))
+exec_conn_func(id::Int) = exec_conn_func(worker_from_id(id)::Worker)
175
function exec_conn_func(w::Worker)
176
try
177
f = notnothing(w.conn_func)
src/remotecall.jl
@@ -259,7 +259,7 @@ function send_del_client(rr)
259
if rr.where == myid()
260
del_client(rr)
261
elseif id_in_procs(rr.where) # process only if a valid worker
262
- w = worker_from_id(rr.where)
+ w = worker_from_id(rr.where)::Worker
263
push!(w.del_msgs, (remoteref_id(rr), myid()))
264
w.gcflag = true
265
notify(any_gc_flag)
0 commit comments