Skip to content

Commit 54a1256

Browse files
committed
Fix deprecation warning for MPI.mpiexec
See JuliaParallel/MPI.jl#341
1 parent 66df256 commit 54a1256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MPIClusterManagers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export MPIManager, launch, manage, kill, procs, connect, mpiprocs, @mpi_do, Tran
44

55
using Distributed, Serialization
66
import MPI
7-
const mpiexec = isdefined(MPI, :mpiexec) ? MPI.mpiexec : "mpiexec"
7+
const mpiexec = isdefined(MPI, :mpiexec_path) ? MPI.mpiexec_path : "mpiexec"
88

99
include("mpimanager.jl")
1010

0 commit comments

Comments
 (0)