HDFS-3768. Exception in TestJettyHelper is incorrect. Contributed by Eli Reisman.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1370952 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jakob Homan 2012-08-08 20:34:03 +00:00
parent ffb4d5b04c
commit ac31ae6a79
2 changed files with 4 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public class TestJettyHelper implements MethodRule {
server.getConnectors()[0].setPort(port);
return server;
} catch (Exception ex) {
throw new RuntimeException("Could not stop embedded servlet container, " + ex.getMessage(), ex);
throw new RuntimeException("Could not start embedded servlet container, " + ex.getMessage(), ex);
}
}

View File

@ -109,6 +109,9 @@ Trunk (unreleased changes)
HDFS-3630 Modify TestPersistBlocks to use both flush and hflush (sanjay)
HDFS-3768. Exception in TestJettyHelper is incorrect.
(Eli Reisman via jghoman)
OPTIMIZATIONS
BUG FIXES