You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Christopher L. Shannon (JIRA)" <ji...@apache.org> on 2015/03/24 20:47:53 UTC

[jira] [Created] (AMQ-5686) ProxyMessageStore doesn't properly delegate

Christopher L. Shannon created AMQ-5686:
-------------------------------------------

             Summary: ProxyMessageStore doesn't properly delegate
                 Key: AMQ-5686
                 URL: https://issues.apache.org/jira/browse/AMQ-5686
             Project: ActiveMQ
          Issue Type: Bug
          Components: Broker
    Affects Versions: 5.11.1
            Reporter: Christopher L. Shannon


In ProxyMessageStore the method {{asyncAddTopicMessage}} does not call the delegate method as it should.  This causes a {{StackOverflowError}} if the method is called as it will just recursively keep calling the same method over and over again.

The problem is here on line 141 of {{ProxyMessageStore.java}}:

{code}
@Override
public ListenableFuture<Object> asyncAddTopicMessage(ConnectionContext context, Message message, boolean canOptimizeHint) throws IOException {
  return asyncAddtopicMessage(context,message,canOptimizeHint);
}
{code}

This simply should be changed to:

{code}
@Override
public ListenableFuture<Object> asyncAddTopicMessage(ConnectionContext context, Message message, boolean canOptimizeHint) throws IOException {
  return delegate.asyncAddtopicMessage(context,message,canOptimizeHint);
}
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)