Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/jobsubmission.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,12 @@ function submit_job(
else
c.env
end
args = merge(get(app, :args, Dict()), args)
args = merge(
# Note: we need to ::Dict type assertion here to avoid JET complaining with:
# no matching method found `convert(::Type{Dict}, ::NamedTuple)`: convert(JuliaHub.Dict, _26::NamedTuple)
get(app, :args, Dict())::Dict,
args,
)

projectid = isnothing(c.project) ? nothing : string(c.project)

Expand Down
Loading