Skip to content

Commit 2320f42

Browse files
committed
allow remote evalfile to return a value. fixes #5648
1 parent c88a989 commit 2320f42

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

base/loading.jl

+1-3
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,7 @@ function include_from_node1(path::String)
120120
result = Core.include(path)
121121
nprocs()>1 && sleep(0.005)
122122
else
123-
include_string(remotecall_fetch(1, readall, path), path)
124-
# don't bother sending last value for remote include
125-
result = nothing
123+
result = include_string(remotecall_fetch(1, readall, path), path)
126124
end
127125
finally
128126
if prev == nothing

0 commit comments

Comments
 (0)