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 9b73cf1 commit bdc619fCopy full SHA for bdc619f
src/Distributed.jl
@@ -76,6 +76,9 @@ function _require_callback(mod::Base.PkgId)
76
# broadcast top-level (e.g. from Main) import/using from node 1 (only)
77
@sync for p in procs()
78
p == 1 && continue
79
+ # Extensions are already loaded on workers by their triggers being loaded
80
+ # so no need to fire the callback upon extension being loaded on master.
81
+ Base.loading_extension && continue
82
@async_unwrap remotecall_wait(p) do
83
Base.require(mod)
84
nothing
0 commit comments