You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Gary Tully (JIRA)" <ji...@apache.org> on 2010/02/15 20:43:33 UTC

[jira] Created: (AMQ-2607) TransportConnector] Connector vm://null should contain broker name

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.


[jira] Updated: (AMQ-2607) TransportConnector] Connector vm://null should contain broker name

Posted by "Gary Tully (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2607?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gary Tully updated AMQ-2607:
----------------------------

    Fix Version/s: 5.3.1

fix applied to 5.3 branch: r 911417

> 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.3.1, 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.


[jira] Resolved: (AMQ-2607) TransportConnector] Connector vm://null should contain broker name

Posted by "Gary Tully (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQ-2607?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gary Tully resolved AMQ-2607.
-----------------------------

    Resolution: Fixed

applied fix in r910315

> 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.