MAPREDUCE-6191. Improve clearing stale state of Java serialization
testcase. (Sam Liu via Eric Yang)
(cherry picked from commit c379e102dd
)
Conflicts:
hadoop-mapreduce-project/CHANGES.txt
This commit is contained in:
parent
a60a0a7128
commit
303c650d0d
|
@ -462,6 +462,9 @@ Release 2.7.3 - UNRELEASED
|
||||||
MAPREDUCE-6413. TestLocalJobSubmission is failing with unknown host
|
MAPREDUCE-6413. TestLocalJobSubmission is failing with unknown host
|
||||||
(zhihai xu via jlowe)
|
(zhihai xu via jlowe)
|
||||||
|
|
||||||
|
MAPREDUCE-6191. Improve clearing stale state of Java serialization
|
||||||
|
testcase. (Sam Liu via Eric Yang)
|
||||||
|
|
||||||
Release 2.7.2 - 2016-01-25
|
Release 2.7.2 - 2016-01-25
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -749,6 +752,9 @@ Release 2.6.5 - UNRELEASED
|
||||||
MAPREDUCE-6413. TestLocalJobSubmission is failing with unknown host
|
MAPREDUCE-6413. TestLocalJobSubmission is failing with unknown host
|
||||||
(zhihai xu via jlowe)
|
(zhihai xu via jlowe)
|
||||||
|
|
||||||
|
MAPREDUCE-6191. Improve clearing stale state of Java serialization
|
||||||
|
testcase. (Sam Liu via Eric Yang)
|
||||||
|
|
||||||
Release 2.6.4 - UNRELEASED
|
Release 2.6.4 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -81,7 +81,7 @@ public class TestJavaSerialization extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void cleanAndCreateInput(FileSystem fs) throws IOException {
|
private void cleanAndCreateInput(FileSystem fs) throws IOException {
|
||||||
fs.delete(INPUT_FILE, true);
|
fs.delete(INPUT_DIR, true);
|
||||||
fs.delete(OUTPUT_DIR, true);
|
fs.delete(OUTPUT_DIR, true);
|
||||||
|
|
||||||
OutputStream os = fs.create(INPUT_FILE);
|
OutputStream os = fs.create(INPUT_FILE);
|
||||||
|
|
Loading…
Reference in New Issue