Skip to content

Commit f89c99e

Browse files
committed
fixup! fixup! fixup! Add precompilation via PrecompileTools
1 parent 4ccca5b commit f89c99e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: src/sch/Sch.jl

+4-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,10 @@ function init_proc(state, p, log_sink)
355355
lock(WORKER_MONITOR_LOCK) do
356356
d = WORKER_MONITOR_CHANS[wid]
357357
for uid in keys(d)
358-
put!(d[uid], (wid, OSProc(wid), nothing, (ProcessExitedException(wid), nothing)))
358+
try
359+
put!(d[uid], (wid, OSProc(wid), nothing, (ProcessExitedException(wid), nothing)))
360+
catch
361+
end
359362
end
360363
empty!(d)
361364
delete!(WORKER_MONITOR_CHANS, wid)

0 commit comments

Comments
 (0)