HDFS-4748. Merge r1476587 from trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1476588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
091e5df455
commit
f76ad1af85
|
@ -216,6 +216,9 @@ Release 2.0.5-beta - UNRELEASED
|
|||
HDFS-4768. File handle leak in datanode when a block pool is removed.
|
||||
(Chris Nauroth via suresh)
|
||||
|
||||
HDFS-4748. MiniJournalCluster#restartJournalNode leaks resources, which
|
||||
causes sporadic test failures. (Chris Nauroth via suresh)
|
||||
|
||||
Release 2.0.4-alpha - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -178,9 +178,9 @@ public class MiniJournalCluster {
|
|||
conf.set(DFSConfigKeys.DFS_JOURNALNODE_HTTP_ADDRESS_KEY, "127.0.0.1:" +
|
||||
httpAddrs[i].getPort());
|
||||
|
||||
JournalNode jn = new JournalNode();
|
||||
jn.setConf(conf);
|
||||
jn.start();
|
||||
nodes[i] = new JournalNode();
|
||||
nodes[i].setConf(conf);
|
||||
nodes[i].start();
|
||||
}
|
||||
|
||||
public int getQuorumSize() {
|
||||
|
|
Loading…
Reference in New Issue