Skip to content

Commit 6e0cceb

Browse files
nadiayaknakad
authored andcommitted
fix: use DLC prod images (#298)
1 parent 51f1dce commit 6e0cceb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/sagemaker/fw_utils.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
ASIMOV_OPT_IN_ACCOUNTS_BY_REGION = {"ap-east-1": "871362719292", "me-south-1": "217643126080"}
6262
DEFAULT_ACCOUNT = "520713654638"
6363
ASIMOV_PROD_ACCOUNT = "763104351884"
64-
ASIMOV_DEFAULT_ACCOUNT = "028651357192"
64+
ASIMOV_DEFAULT_ACCOUNT = ASIMOV_PROD_ACCOUNT
6565

6666
MERGED_FRAMEWORKS_REPO_MAP = {
6767
"tensorflow-scriptmode": "tensorflow-training",
@@ -194,9 +194,6 @@ def _registry_id(region, framework, py_version, account, framework_version):
194194
return ASIMOV_OPT_IN_ACCOUNTS_BY_REGION.get(region)
195195
if region in ASIMOV_VALID_ACCOUNTS_BY_REGION:
196196
return ASIMOV_VALID_ACCOUNTS_BY_REGION.get(region)
197-
# TODO: remove when ASIMOV images availabel in Prod
198-
if framework in ("tensorflow-serving-eia", "mxnet-serving-eia"):
199-
return ASIMOV_PROD_ACCOUNT
200197
return ASIMOV_DEFAULT_ACCOUNT
201198
if region in OPT_IN_ACCOUNTS_BY_REGION:
202199
return OPT_IN_ACCOUNTS_BY_REGION.get(region)

0 commit comments

Comments
 (0)