File tree 1 file changed +1
-5
lines changed
s3compatapi/src/main/java/com/snowflake/s3compatapitestsuite/compatapi
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -98,8 +98,6 @@ public String getBucketLocation(String bucketName) {
98
98
if (ex .getAdditionalDetails () != null ) {
99
99
String correctRegion = ex .getAdditionalDetails ().get ("Region" );
100
100
if (correctRegion != null ) {
101
- this .s3Client .setSignerRegionOverride (correctRegion );
102
- this .s3Client .setRegion (RegionUtils .getRegion (correctRegion ));
103
101
return correctRegion .toLowerCase ();
104
102
}
105
103
}
@@ -120,10 +118,8 @@ public String getBucketRegionThroughMetadata(String bucketName) {
120
118
}
121
119
} catch (AmazonS3Exception ex ) {
122
120
if (ex .getAdditionalDetails () != null ) {
123
- String correctRegion = ex .getAdditionalDetails ().get ("Region" );
121
+ String correctRegion = ex .getAdditionalDetails ().get (BUCKET_REGION_HEADER_NAME );
124
122
if (correctRegion != null ) {
125
- this .s3Client .setSignerRegionOverride (correctRegion );
126
- this .s3Client .setRegion (RegionUtils .getRegion (correctRegion ));
127
123
return correctRegion .toLowerCase ();
128
124
}
129
125
}
You can’t perform that action at this time.
0 commit comments