Skip to content

Commit 51eaece

Browse files
committed
increase timeout for rmprocs (workaround)
node termination during node provisioning is not well handled, resulting in `connect: connection refused (ECONNREFUSED) in connect_to_worker from the new worker to the terminating worker for an example, see: https://travis-ci.org/JuliaLang/julia/jobs/186141590
1 parent b536c00 commit 51eaece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ cd(dirname(@__FILE__)) do
6969
push!(results, (test, resp))
7070
if (isa(resp[end], Integer) && (resp[end] > max_worker_rss)) || isa(resp, Exception)
7171
if n > 1
72-
rmprocs(p, waitfor=0.5)
72+
rmprocs(p, waitfor=5.0)
7373
p = addprocs(1; exename=test_exename, exeflags=test_exeflags)[1]
7474
remotecall_fetch(()->include("testdefs.jl"), p)
7575
else

0 commit comments

Comments
 (0)