HADOOP-12655. TestHttpServer.testBindAddress bind port range is wider than expected. (Wei-Chiu Chuang via stevel)

This commit is contained in:
Steve Loughran 2016-01-07 14:51:34 +00:00
parent ccd2be99cc
commit 83932ced71
2 changed files with 3 additions and 4 deletions

View File

@ -18,6 +18,8 @@ Release 2.9.0 - UNRELEASED
HADOOP-12663. Remove Hard-Coded Values From FileSystem.java.
(BELUGA BEHR via stevel)
HADOOP-12655. TestHttpServer.testBindAddress bind port range is wider
than expected. (Wei-Chiu Chuang via stevel)
BUG FIXES

View File

@ -534,9 +534,6 @@ private HttpServer2 checkBindAddress(String host, int port, boolean findPort)
assertTrue(boundPort != 0); // ephemeral should now return bound port
} else if (findPort) {
assertTrue(boundPort > port);
// allow a little wiggle room to prevent random test failures if
// some consecutive ports are already in use
assertTrue(boundPort - port < 8);
}
} catch (Exception e) {
server.stop();