Skip to content

Commit 3d0729f

Browse files
committed
Set JULIA_REVISE to off on elastic workers
Revise has Distributed support, workers shouldn't run Revise separately.
1 parent 4e48ae6 commit 3d0729f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/runworkers.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ function _elastic_worker_startjl(
231231
)
232232
env_withdefaults = Dict{String,String}()
233233
haskey(ENV, "JULIA_WORKER_TIMEOUT") && (env_withdefaults["JULIA_WORKER_TIMEOUT"] = ENV["JULIA_WORKER_TIMEOUT"])
234+
env_withdefaults["JULIA_REVISE"] = "off"
234235
merge!(env_withdefaults, env)
235236
env_vec = isempty(env_withdefaults) ? [] : collect(env_withdefaults)
236237

0 commit comments

Comments
 (0)