From ee12aa5f1bb085b94b15b995bc3fbeec42161ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attilio=20Don=C3=A0?= Date: Thu, 5 Dec 2024 20:53:59 +0100 Subject: [PATCH] Remove logs --- test/test_one_terminate_all.jl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/test_one_terminate_all.jl b/test/test_one_terminate_all.jl index a09a5e9..db018f9 100644 --- a/test/test_one_terminate_all.jl +++ b/test/test_one_terminate_all.jl @@ -6,9 +6,7 @@ terminated = true function terminate(::Timer) global terminated terminated = false - @error "[tast_one_terminate_all] failed to stop all processes" shutdown() - return nothing end @@ -27,14 +25,11 @@ end Timer(terminate, 5) try - #spec = [process(task_all), process(task_one), process(task_all)] spec = [process("p1", task_all), process("p2", task_one), process("p3", task_all)] - sv = supervise(spec; strategy=:one_terminate_all, terminateif=:empty) Visor.dump() info = procs() - @info "processes: $info" @test terminated finally