Revert HDFS-3719. See discussion there and HDFS-3770 for more info.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1372545 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ae6b1ea89c
commit
d3427c7d93
|
@ -411,9 +411,6 @@ Release 2.0.1-alpha - UNRELEASED
|
||||||
HDFS-3756. DelegationTokenFetcher creates 2 HTTP connections, the second
|
HDFS-3756. DelegationTokenFetcher creates 2 HTTP connections, the second
|
||||||
one not properly configured. (tucu)
|
one not properly configured. (tucu)
|
||||||
|
|
||||||
HDFS-3719. Re-enable append-related tests in TestFileConcurrentReader.
|
|
||||||
(Andrew Wang via atm)
|
|
||||||
|
|
||||||
HDFS-3579. libhdfs: fix exception handling. (Colin Patrick McCabe via atm)
|
HDFS-3579. libhdfs: fix exception handling. (Colin Patrick McCabe via atm)
|
||||||
|
|
||||||
HDFS-3754. BlockSender doesn't shutdown ReadaheadPool threads. (eli)
|
HDFS-3754. BlockSender doesn't shutdown ReadaheadPool threads. (eli)
|
||||||
|
|
|
@ -288,8 +288,10 @@ public class TestFileConcurrentReader {
|
||||||
runTestUnfinishedBlockCRCError(true, SyncType.SYNC, SMALL_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(true, SyncType.SYNC, SMALL_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fails due to issue w/append, disable
|
||||||
|
@Ignore
|
||||||
@Test
|
@Test
|
||||||
public void testUnfinishedBlockCRCErrorTransferToAppend()
|
public void _testUnfinishedBlockCRCErrorTransferToAppend()
|
||||||
throws IOException {
|
throws IOException {
|
||||||
runTestUnfinishedBlockCRCError(true, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(true, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
@ -305,8 +307,10 @@ public class TestFileConcurrentReader {
|
||||||
runTestUnfinishedBlockCRCError(false, SyncType.SYNC, SMALL_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(false, SyncType.SYNC, SMALL_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fails due to issue w/append, disable
|
||||||
|
@Ignore
|
||||||
@Test
|
@Test
|
||||||
public void testUnfinishedBlockCRCErrorNormalTransferAppend()
|
public void _testUnfinishedBlockCRCErrorNormalTransferAppend()
|
||||||
throws IOException {
|
throws IOException {
|
||||||
runTestUnfinishedBlockCRCError(false, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(false, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue