Skip to content

Commit 093bb4f

Browse files
authored
Fix some string-related invalidation risks (#37799)
1 parent 6f93bbe commit 093bb4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cluster.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ end
516516
default_addprocs_params() = Dict{Symbol,Any}(
517517
:topology => :all_to_all,
518518
:dir => pwd(),
519-
:exename => joinpath(Sys.BINDIR, julia_exename()),
519+
:exename => joinpath(Sys.BINDIR::String, julia_exename()),
520520
:exeflags => ``,
521521
:enable_threaded_blas => false,
522522
:lazy => true)

0 commit comments

Comments
 (0)