|
6 | 6 | import com.amazonaws.AmazonClientException;
|
7 | 7 | import com.amazonaws.ClientConfiguration;
|
8 | 8 | import com.amazonaws.auth.AWSCredentialsProvider;
|
9 |
| -import com.amazonaws.regions.Region; |
10 |
| -import com.amazonaws.regions.Regions; |
| 9 | +import com.amazonaws.regions.RegionUtils; |
11 | 10 | import com.amazonaws.services.s3.S3ClientOptions;
|
12 | 11 | import com.amazonaws.services.s3.model.*;
|
13 | 12 | import com.snowflake.s3compatapitestsuite.perf.PerfMeasurement;
|
@@ -70,7 +69,7 @@ private InstrumentedAmazonS3Client createS3Client(
|
70 | 69 | }
|
71 | 70 | if (region != null) {
|
72 | 71 | s3Client.setSignerRegionOverride(region);
|
73 |
| - s3Client.withRegion(Region.getRegion(Regions.fromName(region))); |
| 72 | + s3Client.withRegion(RegionUtils.getRegion(region)); |
74 | 73 | }
|
75 | 74 | s3Client.setEndpoint(endpoint);
|
76 | 75 | // explicitly force using virtual style access for S3
|
@@ -98,7 +97,7 @@ public String getBucketLocation(String bucketName) {
|
98 | 97 | String correctRegion = ex.getAdditionalDetails().get("Region");
|
99 | 98 | if (correctRegion != null) {
|
100 | 99 | this.s3Client.setSignerRegionOverride(correctRegion);
|
101 |
| - this.s3Client.setRegion(Region.getRegion(Regions.fromName(correctRegion))); |
| 100 | + this.s3Client.setRegion(RegionUtils.getRegion(correctRegion)); |
102 | 101 | return this.s3Client.getBucketLocation(bucketName);
|
103 | 102 | }
|
104 | 103 | }
|
@@ -398,7 +397,7 @@ public void copyObject(String sourceBucket, String sourceKey, @Nullable String s
|
398 | 397 | @Override
|
399 | 398 | public void setRegion(@Nullable String region) {
|
400 | 399 | try {
|
401 |
| - this.s3Client.setRegion(Region.getRegion(Regions.fromName(region))); |
| 400 | + this.s3Client.setRegion(RegionUtils.getRegion(region)); |
402 | 401 | } catch (AmazonS3Exception ex) {
|
403 | 402 | throw ex;
|
404 | 403 | }
|
|
0 commit comments