fix test failure

This commit is contained in:
Robert Muir 2015-08-20 17:31:06 -04:00
parent 478bf1c9ef
commit 7298be474d
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ public class NettyTransport extends AbstractLifecycleComponent<Transport> implem
local.add("127.0.0.1");
// check if v6 is supported, if so, v4 will also work via mapped addresses.
if (NetworkUtils.SUPPORTS_V6) {
local.add("::1");
local.add("[::1]"); // may get ports appended!
}
return local;
}