Skip to content

Commit b1342b4

Browse files
...
1 parent c403d15 commit b1342b4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/managers.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ default_addprocs_params(::SSHManager) =
170170
:tunnel => false,
171171
:multiplex => false,
172172
:max_parallel => 10,
173+
:ident => nothing,
173174
:connect_idents => nothing))
174175

175176
function launch(manager::SSHManager, params::Dict, launched::Array, launch_ntfy::Condition)
@@ -368,6 +369,9 @@ function launch_on_machine(manager::SSHManager, machine::AbstractString, cnt, pa
368369
wconfig.connect_idents = Vector(params[:connect_idents])
369370
@info "connect_idents = $(wconfig.connect_idents)"
370371
end
372+
if haskey(params, :ident)
373+
wconfig.ident = params[:ident]
374+
end
371375

372376
push!(launched, wconfig)
373377
notify(launch_ntfy)

0 commit comments

Comments
 (0)