Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/process_messages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function run_work_thunk(thunk::Function, print_error::Bool)
end
return result
end
function run_work_thunk(rv::RemoteValue, thunk)
function run_work_thunk_remotevalue(rv::RemoteValue, thunk)
put!(rv, run_work_thunk(thunk, false))
nothing
end
Expand All @@ -85,7 +85,7 @@ function schedule_call(rid, thunk)
rv = RemoteValue(def_rv_channel())
(PGRP::ProcessGroup).refs[rid] = rv
push!(rv.clientset, rid.whence)
errormonitor(@async run_work_thunk(rv, thunk))
errormonitor(@async run_work_thunk_remotevalue(rv, thunk))
return rv
end
end
Expand Down