Temporarily changing rpc version back to 25... TestTableMapReduce is failing because client is 26 but master is version 25?

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1021236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-10-11 03:37:35 +00:00
parent 83782f16d6
commit c80154014b
1 changed files with 4 additions and 1 deletions

View File

@ -78,7 +78,10 @@ public interface HBaseRPCProtocolVersion extends VersionedProtocol {
* <li>Version 24: HBASE-2473, create table with regions.</li>
* <li>Version 25: Added openRegion and Stoppable/Abortable to API.</li>
* <li>Version 26: New master.</li>
* REVERTED TO 25 TEMPORARILY -- TESTTABLEMAPREDUCE IS FAILING WITH
* HBaseRPC$VersionMismatch: Protocol org.apache.hadoop.hbase.ipc.HRegionInterface version mismatch. (client = 26, server = 25)
* ON HUDSON.
* </ul>
*/
public static final long versionID = 26L;
public static final long versionID = 25L;
}