HADOOP-17305. Fix ITestCustomSigner to work with s3 compatible endpoints (#2395)

Contributed by Mukund Thakur

Change-Id: Ia5def405056691c349cf05530fd3172047d2058b
This commit is contained in:
Mukund Thakur 2020-10-21 17:31:13 +05:30 committed by Steve Loughran
parent b3e968d21e
commit 4c3324ca1a
No known key found for this signature in database
GPG Key ID: D22CF846DBB162A0
1 changed files with 1 additions and 5 deletions

View File

@ -133,11 +133,7 @@ public class ITestCustomSigner extends AbstractS3ATestBase {
}
private String determineRegion(String bucketName) throws IOException {
AmazonS3 s3 = AmazonS3ClientBuilder.standard().withCredentials(
new SimpleAWSCredentialsProvider(null, createConfiguration()))
.withForceGlobalBucketAccessEnabled(true).withRegion("us-east-1")
.build();
String region = s3.getBucketLocation(bucketName);
String region = getFileSystem().getBucketLocation(bucketName);
return fixBucketRegion(region);
}