Browse Source

HADOOP-3615. Set DatanodeProtocol.versionID to the correct value.
Contributed by Tsz Wo (Nicholas), SZE.


git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@670278 13f79535-47bb-0310-9956-ffa450edef68

Christopher Douglas 17 years ago
parent
commit
59d7cde695
2 changed files with 4 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 1 1
      src/hdfs/org/apache/hadoop/dfs/DatanodeProtocol.java

+ 3 - 0
CHANGES.txt

@@ -652,6 +652,9 @@ Release 0.18.0 - Unreleased
     HADOOP-3603. Fix MapOutputCollector to spill when io.sort.spill.percent is
     1.0 and to detect spills when emitted records write no data. (cdouglas)
 
+    HADOOP-3615. Set DatanodeProtocol.versionID to the correct value.
+    (Tsz Wo (Nicholas), SZE via cdouglas)
+
 Release 0.17.1 - Unreleased
 
   INCOMPATIBLE CHANGES

+ 1 - 1
src/hdfs/org/apache/hadoop/dfs/DatanodeProtocol.java

@@ -33,7 +33,7 @@ interface DatanodeProtocol extends VersionedProtocol {
   /**
    * 16: Block parameter added to nextGenerationStamp().
    */
-  public static final long versionID = 15L;
+  public static final long versionID = 16L;
   
   // error code
   final static int NOTIFY = 0;