File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.170.0 (2023-07-05)
4
+
5
+ ### Features
6
+
7
+ * Enable customizing artifact output path
8
+
9
+ ### Bug Fixes and Other Changes
10
+
11
+ * Add il-central-1 support for all SM DLCs
12
+ * jumpstart async inference config predictor support
13
+ * Update CreateEdgePackagingJob resourceKey with type string
14
+
3
15
## v2.169.0 (2023-06-29)
4
16
5
17
### Features
Original file line number Diff line number Diff line change 1
- 2.169 .1.dev0
1
+ 2.170 .1.dev0
Original file line number Diff line number Diff line change @@ -1407,7 +1407,9 @@ def volume_size_supported(instance_type: str) -> bool:
1407
1407
try :
1408
1408
1409
1409
# local mode does not support volume size
1410
- if instance_type .startswith ("local" ):
1410
+ # instance type given as pipeline parameter does not support volume size
1411
+ # do not change the if statement order below.
1412
+ if is_pipeline_variable (instance_type ) or instance_type .startswith ("local" ):
1411
1413
return False
1412
1414
1413
1415
parts : List [str ] = instance_type .split ("." )
Original file line number Diff line number Diff line change @@ -1703,6 +1703,7 @@ def test_volume_size_not_supported(self):
1703
1703
"g5.8xlarge" ,
1704
1704
"local" ,
1705
1705
"local_gpu" ,
1706
+ ParameterString (name = "InstanceType" , default_value = "ml.m4.xlarge" ),
1706
1707
]
1707
1708
1708
1709
for instance in instances_that_dont_support_volume_size :
You can’t perform that action at this time.
0 commit comments