TransportConnector] Connector vm://null should contain broker name
------------------------------------------------------------------
Key: AMQ-2607
URL: https://issues.apache.org/activemq/browse/AMQ-2607
Project: ActiveMQ
Issue Type: Bug
Components: Broker
Affects Versions: 5.3.0
Reporter: Gary Tully
Assignee: Gary Tully
Fix For: 5.4.0
the url I am using is
vm:(broker:(tcp://localhost:61616)/myBroker?persistent=false)
when to connector starts it says
2010-02-12 18:38:24,204 INFO [TransportConnector] Connector vm://null Started
instead of
2010-02-12 18:38:24,204 INFO [TransportConnector] Connector vm://myBroker
Started
resolution:
Hi,
class VMTransportFactory on method doCompositeConnect line 70
if (brokerData.getPath() != null) {
host = data.getPath();
}
shouldn't it be
if (brokerData.getPath() != null) {
host = brokerData.getPath();
}
see: http://old.nabble.com/is-this-a-bug---tp27544304p27544304.html
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.