From 69b63e31951823b30d23e719f9cab7523366c5e9 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 9 Feb 2025 15:53:20 -0500 Subject: [PATCH] Change `rethrow(ex)` to `rethrow()` --- src/slurmmanager.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slurmmanager.jl b/src/slurmmanager.jl index ff6573e..f0175c5 100644 --- a/src/slurmmanager.jl +++ b/src/slurmmanager.jl @@ -240,7 +240,7 @@ function Distributed.launch(manager::SlurmManager, params::Dict, instances_arr:: catch ex @error "Error launching Slurm job" exception=ex - rethrow(ex) + rethrow() end end