8262900: ToolBasicTest fails to access HTTP server it starts
Reviewed-by: sundar, vromero
This commit is contained in:
parent
c70589c68c
commit
e43aee58e1
@ -526,7 +526,7 @@ public class ToolBasicTest extends ReplToolTesting {
|
||||
public void testOpenFileOverHttp() throws IOException {
|
||||
var script = "int a = 10;int b = 20;int c = a + b;";
|
||||
|
||||
var localhostAddress = new InetSocketAddress(InetAddress.getLocalHost().getHostAddress(), 0);
|
||||
var localhostAddress = new InetSocketAddress(InetAddress.getLoopbackAddress().getHostAddress(), 0);
|
||||
var httpServer = HttpServer.create(localhostAddress, 0);
|
||||
try {
|
||||
httpServer.createContext("/script", exchange -> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user