瀏覽代碼

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 年之前
父節點
當前提交
59d7cde695
共有 2 個文件被更改,包括 4 次插入1 次删除
  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
     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)
     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
 Release 0.17.1 - Unreleased
 
 
   INCOMPATIBLE CHANGES
   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().
    * 16: Block parameter added to nextGenerationStamp().
    */
    */
-  public static final long versionID = 15L;
+  public static final long versionID = 16L;
   
   
   // error code
   // error code
   final static int NOTIFY = 0;
   final static int NOTIFY = 0;