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 3fcdbe076f
commit 3190534814
2 changed files with 3 additions and 4 deletions

View File

@ -658,7 +658,9 @@ 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 @@ public class TestHttpServer extends HttpServerFunctionalTest {
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();