mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@705147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
543bc84a88
commit
8e06b20b0a
|
@ -50,7 +50,7 @@ public class MulticastDiscoveryAgent implements DiscoveryAgent, Runnable {
|
||||||
|
|
||||||
public static final String DEFAULT_DISCOVERY_URI_STRING = "multicast://239.255.2.3:6155";
|
public static final String DEFAULT_DISCOVERY_URI_STRING = "multicast://239.255.2.3:6155";
|
||||||
public static final String DEFAULT_HOST_STR = "default";
|
public static final String DEFAULT_HOST_STR = "default";
|
||||||
public static final String DEFAULT_HOST_IP = "239.255.2.3";
|
public static final String DEFAULT_HOST_IP = System.getProperty("activemq.partition.discovery", "239.255.2.3");
|
||||||
public static final int DEFAULT_PORT = 6155;
|
public static final int DEFAULT_PORT = 6155;
|
||||||
|
|
||||||
|
|
||||||
|
@ -293,7 +293,6 @@ public class MulticastDiscoveryAgent implements DiscoveryAgent, Runnable {
|
||||||
if (LOG.isTraceEnabled()) {
|
if (LOG.isTraceEnabled()) {
|
||||||
LOG.trace("start - myHost = " + myHost);
|
LOG.trace("start - myHost = " + myHost);
|
||||||
LOG.trace("start - myPort = " + myPort);
|
LOG.trace("start - myPort = " + myPort);
|
||||||
LOG.trace("start - myHost = " + myHost);
|
|
||||||
LOG.trace("start - group = " + group );
|
LOG.trace("start - group = " + group );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue