HDFS-8847. change TestHDFSContractAppend to not override testRenameFileBeingAppended method. Contributed by Zhihai Xu
(cherry picked from commit 90b510405a
)
This commit is contained in:
parent
b9ec7f15d0
commit
c6e79178d4
|
@ -764,6 +764,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HDFS-8670. Better to exclude decommissioned nodes for namenode NodeUsage JMX
|
||||
(J.Andreina via vinayakumarb)
|
||||
|
||||
HDFS-8847. change TestHDFSContractAppend to not override
|
||||
testRenameFileBeingAppended method. (Zhihai Xu)
|
||||
|
||||
Release 2.7.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -17,11 +17,9 @@ package org.apache.hadoop.fs.contract.hdfs;
|
|||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.contract.AbstractContractAppendTest;
|
||||
import org.apache.hadoop.fs.contract.AbstractFSContract;
|
||||
import org.apache.hadoop.fs.contract.ContractTestUtils;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
|
||||
public class TestHDFSContractAppend extends AbstractContractAppendTest {
|
||||
|
@ -40,17 +38,4 @@ public class TestHDFSContractAppend extends AbstractContractAppendTest {
|
|||
protected AbstractFSContract createContract(Configuration conf) {
|
||||
return new HDFSContract(conf);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void testRenameFileBeingAppended() throws Throwable {
|
||||
try {
|
||||
super.testRenameFileBeingAppended();
|
||||
fail("Expected a FileNotFoundException");
|
||||
} catch (FileNotFoundException e) {
|
||||
// downgrade
|
||||
ContractTestUtils.downgrade("Renaming an open file" +
|
||||
"still creates the old path", e);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue