merge -r 1402659:1402660 from trunk. FIXES: HADOOP-8713
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1402662 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
348faf8f36
commit
dc4f199708
|
@ -113,6 +113,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
HADOOP-8951. RunJar to fail with user-comprehensible error
|
||||
message if jar missing. (stevel via suresh)
|
||||
|
||||
HADOOP-8713. TestRPCCompatibility fails intermittently with JDK7
|
||||
(Trevor Robinson via tgraves)
|
||||
|
||||
Release 2.0.2-alpha - 2012-09-07
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -36,6 +36,7 @@ import org.apache.hadoop.ipc.protobuf.ProtocolInfoProtos.GetProtocolSignatureRes
|
|||
import org.apache.hadoop.ipc.protobuf.ProtocolInfoProtos.ProtocolSignatureProto;
|
||||
import org.apache.hadoop.net.NetUtils;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
/** Unit test for supporting method-name based compatible RPCs. */
|
||||
|
@ -114,6 +115,11 @@ public class TestRPCCompatibility {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
ProtocolSignature.resetCache();
|
||||
}
|
||||
|
||||
@After
|
||||
public void tearDown() throws IOException {
|
||||
|
@ -219,7 +225,6 @@ System.out.println("echo int is NOT supported");
|
|||
|
||||
@Test // equal version client and server
|
||||
public void testVersion2ClientVersion2Server() throws Exception {
|
||||
ProtocolSignature.resetCache();
|
||||
// create a server with two handlers
|
||||
TestImpl2 impl = new TestImpl2();
|
||||
server = new RPC.Builder(conf).setProtocol(TestProtocol2.class)
|
||||
|
|
Loading…
Reference in New Issue