We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ad321 commit 3f59b7fCopy full SHA for 3f59b7f
test/error_path_manager_timeout.jl
@@ -36,11 +36,12 @@ mktempdir() do tmpdir
36
withenv(new_env...) do
37
@info "with new PATH" Sys.which("srun")
38
39
- expected_outer_ex_T = TaskFailedException
40
if Base.VERSION >= v"1.1"
+ expected_outer_ex_T = TaskFailedException
41
expected_inner_ex_INSTANCE = ErrorException("launch_timeout exceeded")
42
else
43
- expected_inner_ex_INSTANCE = ErrorException("launch_timeout exceeded")
+ expected_outer_ex_T = Base.IOError
44
+ expected_inner_ex_INSTANCE = Base.IOError("hello world")
45
end
46
47
mgr = SlurmClusterManager.SlurmManager(; launch_timeout = 2.0)
0 commit comments