We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
depwarn
1 parent 62940d2 commit 446f970Copy full SHA for 446f970
src/scyld.jl
@@ -5,6 +5,15 @@ struct ScyldManager <: ClusterManager
5
end
6
7
function launch(manager::ScyldManager, params::Dict, instances_arr::Array, c::Condition)
8
+ let
9
+ manager_description = "Scyld ClusterWare"
10
+ msg = "The $(mgr_desc) functionality in ClusterManagers.jl is currently not actively maintained. " *
11
+ "We are currently looking for a new maintainer. " *
12
+ "If you are an active user of the $(mgr_desc) functionality and are interested in becoming the maintainer, " *
13
+ "Please open an issue on the JuliaParallel/ClusterManagers.jl repo: " *
14
+ "https://github.com/JuliaParallel/ClusterManagers.jl/issues"
15
+ Base.depwarn(msg, Symbol(typeof(manager)))
16
+ end
17
try
18
dir = params[:dir]
19
exename = params[:exename]
0 commit comments