From 9fda024c185a811064d0054ae40c4effecd193f9 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 22 Oct 2021 05:32:45 -0400 Subject: [PATCH] Distributed test suite: increase the timeout in the `poll_while` function from 60 seconds to 120 seconds (JuliaLang/julia#42753) (cherry picked from commit bf5d4bf30adc8db940bff924c4a106f1faa0c528) --- test/distributed_exec.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/distributed_exec.jl b/test/distributed_exec.jl index 3335807..6c0e915 100644 --- a/test/distributed_exec.jl +++ b/test/distributed_exec.jl @@ -132,7 +132,7 @@ end testf(id_me) testf(id_other) -function poll_while(f::Function; timeout_seconds::Integer = 60) +function poll_while(f::Function; timeout_seconds::Integer = 120) start_time = time_ns() while f() sleep(1)