File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ CHANGELOG
13
13
** BUG FIXES**
14
14
- Fix validator ` EfaPlacementGroupValidator ` so that it does not suggest to configure a Placement Group when Capacity Blocks are used.
15
15
- Fix sporadic cluster creation failures with managed FSx for Lustre.
16
+ - Fix ` retrieve_supported_regions ` so that it can get the correct S3 url.
16
17
17
18
3.10.1
18
19
------
Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ def retrieve_supported_regions():
570
570
try :
571
571
url = "https://{region}-aws-parallelcluster.s3.{region}.{aws_domain}/supported-regions" .format (
572
572
region = region ,
573
- aws_domain = get_partition (region ),
573
+ aws_domain = get_url_domain_suffix (region ),
574
574
)
575
575
with urllib .request .urlopen (url ) as f : # nosec B310 nosemgrep
576
576
retrieve_supported_regions .cache = f .read ().decode ("utf-8" ).split ("\n " )
You can’t perform that action at this time.
0 commit comments