HADOOP-12418. TestRPC.testRPCInterruptedSimple fails intermittently. Contributed Kihwal Lee.

(cherry picked from commit 01b103f4ff)

Conflicts:
	hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestRPC.java
This commit is contained in:
Kihwal Lee 2015-10-20 15:19:01 -05:00
parent 1a4bd5b161
commit e327233e80
2 changed files with 10 additions and 4 deletions

View File

@ -739,6 +739,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12474. MiniKMS should use random ports for Jetty server by default.
(Mingliang Liu via wheat9)
HADOOP-12418. TestRPC.testRPCInterruptedSimple fails intermittently.
(kihwal)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -28,6 +28,7 @@ import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.Closeable;
import java.io.InterruptedIOException;
import java.io.IOException;
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadInfo;
@ -884,11 +885,13 @@ public class TestRPC {
proxy.ping();
fail("Interruption did not cause IPC to fail");
} catch (IOException ioe) {
if (!ioe.toString().contains("InterruptedException")) {
throw ioe;
if (ioe.toString().contains("InterruptedException") ||
ioe instanceof InterruptedIOException) {
// clear interrupt status for future tests
Thread.interrupted();
return;
}
// clear interrupt status for future tests
Thread.interrupted();
throw ioe;
} finally {
server.stop();
}