Skip to content

Commit 8033646

Browse files
authored
Computelocation (#37468)
* fixing sweep job service response parsing issue * fixing sweep job service response parsing issue * raising a work around for cmd job and spark job name lowering case * fixing black issue * fixing serialization issue in sweep job * include black fix * found and fix the issue in compute validation * fixing a corrupt wokspace arm template * fixing the failed test case * updating the date for 1.18.0 release * removing empty section * adding in progress version details * adding IDC code reviewers * correcting the directory path * lint fix * adding change log entry * addressing review comment * fixing ut * addressing api review comment * adding a fix for subnet validation in compute instance * my py fix * fixing autoML serialization issue * formatting * moving auto ML job create API to 2024 * mapping compute location to prop.compute_location
1 parent 40ae337 commit 8033646

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

sdk/ml/azure-ai-ml/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
### Features Added
66
- Cross subscription storage account support for workspace and feature store. Developer can provide a storage account from another subscription while creating a workspace or storage account.
77

8+
### Bugs Fixed
9+
- #35820 - using compute location attribute to fill compute location to align the experience with UI.
10+
11+
812
## 1.20.0 (2024-09-10)
913

1014
### Features Added

sdk/ml/azure-ai-ml/azure/ai/ml/entities/_compute/aml_compute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def _load_from_rest(cls, rest_obj: ComputeResource) -> "AmlCompute":
180180
name=rest_obj.name,
181181
id=rest_obj.id,
182182
description=prop.description,
183-
location=rest_obj.location,
183+
location=prop.compute_location if prop.compute_location else rest_obj.location,
184184
tags=rest_obj.tags if rest_obj.tags else None,
185185
provisioning_state=prop.provisioning_state,
186186
provisioning_errors=(

0 commit comments

Comments
 (0)