Skip to content

Commit

Permalink
Merge pull request JuliaLang/julia#43084 from JuliaLang/backports-rel…
Browse files Browse the repository at this point in the history
…ease-1.7

release-1.7: Backports for 1.7.0/1.7.0-rc4
  • Loading branch information
KristofferC authored Nov 27, 2021
2 parents ecd3ed9 + 3a5339c commit e8af70c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/remotecall.jl
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,10 @@ function start_gc_msgs_task()
# this might miss events
wait(any_gc_flag)
end
flush_gc_msgs() # handles throws internally
# Use invokelatest() so that custom message transport streams
# for workers can be defined in a newer world age than the Task
# which runs the loop here.
invokelatest(flush_gc_msgs) # handles throws internally
end
end
)
Expand Down

0 comments on commit e8af70c

Please sign in to comment.