We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50cff7 commit c82f5feCopy full SHA for c82f5fe
src/slurm.jl
@@ -15,6 +15,15 @@ end
15
16
function launch(manager::SlurmManager, params::Dict, instances_arr::Array,
17
c::Condition)
18
+ let
19
+ msg = "The Slurm functionality in the `ClusterManagers.jl` package is deprecated " *
20
+ "(including `ClusterManagers.addprocs_slurm` and `ClusterManagers.SlurmManager`). " *
21
+ "It will be removed from ClusterManagers.jl in a future release. " *
22
+ "We recommend migrating to the " *
23
+ "[https://github.com/JuliaParallel/SlurmClusterManager.jl](https://github.com/JuliaParallel/SlurmClusterManager.jl) " *
24
+ "package instead."
25
+ Base.depwarn(msg, :SlurmManager; force = true)
26
+ end
27
try
28
exehome = params[:dir]
29
exename = params[:exename]
0 commit comments