Skip to content

Commit 446f970

Browse files
committed
Add a depwarn for the Scyld functionality
1 parent 62940d2 commit 446f970

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: src/scyld.jl

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ struct ScyldManager <: ClusterManager
55
end
66

77
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
817
try
918
dir = params[:dir]
1019
exename = params[:exename]

0 commit comments

Comments
 (0)