Skip to content

Commit

Permalink
record vm size in return of addproc
Browse files Browse the repository at this point in the history
  • Loading branch information
samtkaplan committed Jan 21, 2025
1 parent 46f12a5 commit 4e5e3cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AzManagers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3104,7 +3104,8 @@ function addproc(vm_template::Dict, nic_template=nothing;

vm = Dict("name"=>vmname, "ip"=>string(r["properties"]["ipConfigurations"][1]["properties"]["privateIPAddress"]),
"subscriptionid"=>string(subscriptionid), "resourcegroup"=>string(resourcegroup), "port"=>string(detached_port()),
"julia_num_threads"=>string(julia_num_threads), "omp_num_threads"=>string(omp_num_threads))
"julia_num_threads"=>string(julia_num_threads), "omp_num_threads"=>string(omp_num_threads),
"size"=>vm_template["value"]["properties"]["hardwareProfile"]["vmSize"])

if detachedservice
detached_service_wait(vm, customenv)
Expand Down

0 comments on commit 4e5e3cc

Please sign in to comment.