Skip to content

Commit

Permalink
undo breaking change to kwargs iteration order
Browse files Browse the repository at this point in the history
This starts to decouple the performance improvement of #24795
from the existence of exactly one implementation of Core.NamedTuple,
in preparation for implementing NamedTuple in Julia rather than C.
  • Loading branch information
vtjnash committed Dec 27, 2017
1 parent 3105a16 commit 0473da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cluster.jl
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ function addprocs(manager::ClusterManager; kwargs...)
end

function addprocs_locked(manager::ClusterManager; kwargs...)
params = merge(default_addprocs_params(), AnyDict(pairs(kwargs)))
params = merge(default_addprocs_params(), AnyDict(kwargs))
topology(Symbol(params[:topology]))

if PGRP.topology != :all_to_all
Expand Down

0 comments on commit 0473da4

Please sign in to comment.