HDFS-3260. TestDatanodeRegistration should set minimum DN version in addition to minimum NN version. Contributed by Aaron T. Myers.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1325120 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5e1ce633a2
commit
6a23ecf03f
|
@ -378,6 +378,9 @@ Release 2.0.0 - UNRELEASED
|
||||||
HDFS-3254. Branch-2 build broken due to wrong version number in
|
HDFS-3254. Branch-2 build broken due to wrong version number in
|
||||||
fuse-dfs' pom.xml. (Anupam Seth via eli)
|
fuse-dfs' pom.xml. (Anupam Seth via eli)
|
||||||
|
|
||||||
|
HDFS-3260. TestDatanodeRegistration should set minimum DN version in
|
||||||
|
addition to minimum NN version. (atm)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-1623 SUBTASKS
|
BREAKDOWN OF HDFS-1623 SUBTASKS
|
||||||
|
|
||||||
HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)
|
HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)
|
||||||
|
|
|
@ -95,6 +95,7 @@ public class TestDatanodeRegistration {
|
||||||
public void testRegistrationWithDifferentSoftwareVersions() throws Exception {
|
public void testRegistrationWithDifferentSoftwareVersions() throws Exception {
|
||||||
Configuration conf = new HdfsConfiguration();
|
Configuration conf = new HdfsConfiguration();
|
||||||
conf.set(DFSConfigKeys.DFS_DATANODE_MIN_SUPPORTED_NAMENODE_VERSION_KEY, "3.0.0");
|
conf.set(DFSConfigKeys.DFS_DATANODE_MIN_SUPPORTED_NAMENODE_VERSION_KEY, "3.0.0");
|
||||||
|
conf.set(DFSConfigKeys.DFS_NAMENODE_MIN_SUPPORTED_DATANODE_VERSION_KEY, "3.0.0");
|
||||||
MiniDFSCluster cluster = null;
|
MiniDFSCluster cluster = null;
|
||||||
try {
|
try {
|
||||||
cluster = new MiniDFSCluster.Builder(conf)
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
|
|
Loading…
Reference in New Issue