|
@@ -23,6 +23,7 @@ import org.apache.hadoop.fs.contract.AbstractContractMkdirTest;
|
|
|
import org.apache.hadoop.fs.contract.AbstractFSContract;
|
|
|
|
|
|
import static org.apache.hadoop.fs.s3a.Constants.FS_S3A_CREATE_PERFORMANCE;
|
|
|
+import static org.apache.hadoop.fs.s3a.Constants.FS_S3A_PERFORMANCE_FLAGS;
|
|
|
import static org.apache.hadoop.fs.s3a.S3ATestUtils.removeBaseAndBucketOverrides;
|
|
|
|
|
|
/**
|
|
@@ -33,8 +34,11 @@ public class ITestS3AContractMkdir extends AbstractContractMkdirTest {
|
|
|
@Override
|
|
|
protected Configuration createConfiguration() {
|
|
|
Configuration conf = super.createConfiguration();
|
|
|
- removeBaseAndBucketOverrides(conf,
|
|
|
- FS_S3A_CREATE_PERFORMANCE);
|
|
|
+ removeBaseAndBucketOverrides(
|
|
|
+ conf,
|
|
|
+ FS_S3A_CREATE_PERFORMANCE,
|
|
|
+ FS_S3A_PERFORMANCE_FLAGS);
|
|
|
+ conf.set(FS_S3A_PERFORMANCE_FLAGS, "");
|
|
|
return conf;
|
|
|
}
|
|
|
|