You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The node price is not showing up in the VM picker table. At SIGGRAPH it was working for 17.1, but there were some new NC prices missing, but now, nothing seems to be showing up at all.
And while we are here ...
NC_V2 machines are not showing up in the GPU tab.
Compute Optimized shows (12), but nothing is in the list
Pool pricing is also not showing. This was also working at SIGGRAPH:
The text was updated successfully, but these errors were encountered:
Looks like the pricing API result has changed based on what is in our codebase:
public getVMPrices(vmsize: string): VMPrices {
vmsize = vmsize.toLowerCase();
if (!this._map.has(vmsize)) {
return null;
}
return this._map.get(vmsize);
}
The _map contains this:
But we are looking for this._map.has('standard_d3_v2') which is clearly not going to work based on what is actually in the map.
And another update
Can confirm that this is the source of all the pricing issues. Hard coded it to return return this._map.get("dv2/dsv2"); and we get a price in the pool creation table as well as the pool details price.
The node price is not showing up in the VM picker table. At SIGGRAPH it was working for 17.1, but there were some new NC prices missing, but now, nothing seems to be showing up at all.
And while we are here ...
Pool pricing is also not showing. This was also working at SIGGRAPH:
The text was updated successfully, but these errors were encountered: