Skip to content

Commit

Permalink
change that will do nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
codybum committed Jun 3, 2024
1 parent 7c45753 commit 64ceb2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ public ActiveBroker(ControllerEngine controllerEngine, String brokerName) {


if (plugin.isIPv6())
//connector.setUri(new URI("nio+ssl://[::]:" + brokerPort + "?daemon=true&wireFormat.maxInactivityDuration=0"));
connector.setUri(new URI("nio+ssl://[::]:" + brokerPort + "?daemon=true"));
//connector.setUri(new URI("nio+ssl://[::1]:" + brokerPort + "?daemon=true&wireFormat.maxInactivityDuration=0"));
connector.setUri(new URI("nio+ssl://[::1]:" + brokerPort + "?daemon=true"));

else
//connector.setUri(new URI("nio+ssl://0.0.0.0:" + brokerPort + "?daemon=true&wireFormat.maxInactivityDuration=0"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void run() {
//logger.trace("Init [{}]", networkInterface.getDisplayName());
SocketAddress sa;
if (plugin.isIPv6()) {
sa = new InetSocketAddress("[::]", discoveryPort);
sa = new InetSocketAddress("[::1]", discoveryPort);
} else {
sa = new InetSocketAddress("0.0.0.0", discoveryPort);
}
Expand All @@ -128,7 +128,7 @@ public void run() {
while(!workers.containsKey(networkInterface)) {
Thread.sleep(1000);
}
logger.trace("Bound to interface [{}] address [::]", networkInterface.getDisplayName());
logger.trace("Bound to interface [{}] address [::1]", networkInterface.getDisplayName());

if (plugin.isIPv6()) {
//find to network and site multicast addresses
Expand Down

0 comments on commit 64ceb2a

Please sign in to comment.