HADOOP-18201. Remove endpoint config overrides for ITestS3ARequesterPays (#4169)

Contributed by Daniel Carl Jones.

Change-Id: Icf99cc878e2b0ba92df630a8aa578616f96e09cc
This commit is contained in:
Daniel Carl Jones 2022-04-14 16:21:34 +01:00 committed by Steve Loughran
parent 0ef1a13f01
commit eab586d566
No known key found for this signature in database
GPG Key ID: D22CF846DBB162A0

View File

@ -30,6 +30,7 @@
import org.apache.hadoop.fs.statistics.StreamStatisticNames;
import static org.apache.hadoop.fs.s3a.Constants.ALLOW_REQUESTER_PAYS;
import static org.apache.hadoop.fs.s3a.Constants.ENDPOINT;
import static org.apache.hadoop.fs.s3a.Constants.S3A_BUCKET_PROBE;
import static org.apache.hadoop.test.LambdaTestUtils.intercept;
@ -43,6 +44,7 @@ protected Configuration createConfiguration() {
Configuration conf = super.createConfiguration();
S3ATestUtils.removeBaseAndBucketOverrides(conf,
ALLOW_REQUESTER_PAYS,
ENDPOINT,
S3A_BUCKET_PROBE);
return conf;
}