You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Willem Jiang (JIRA)" <ji...@apache.org> on 2008/06/27 14:53:00 UTC

[jira] Created: (CAMEL-642) jms aggregation do not work

jms aggregation do not work
---------------------------

                 Key: CAMEL-642
                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
             Project: Apache Camel
          Issue Type: Bug
          Components: camel-jms
    Affects Versions: 1.4.0
            Reporter: Willem Jiang
             Fix For: 1.5.0


I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.

https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java

You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.

BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "William Tam (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43932#action_43932 ] 

William Tam commented on CAMEL-642:
-----------------------------------

Claus, more specifically, look for the endpoint "jms:queue:reply" and verify it is a "AggregatorRoute[Endpoint[jms:queue:reply] -> sendTo(Endpoint[mock:reply])]".  There are some EventDrivenConsumerRoute for other endpoints and they are fine.

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "Marat Bedretdinov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43760#action_43760 ] 

Marat Bedretdinov commented on CAMEL-642:
-----------------------------------------

I'm a little bit surprised how this test could have worked at all...

Looking at the route that this test is testing: 

from("jms:queue:reply").aggregator(header("cheese").....

and then debugging through it show that this portion of the route 'from("jms:queue:reply)'  creates an event driven JMS consumer, and then the 'aggregator' bit creates a JMS polling consumer on the *same* destination.

This is clearly a race, as we now have two consumers competing for messages off the same destination.

It seems a possible fix for this type of construct would be having the 'from' type realize that its followed by an aggregator and then disable creation of its even driven consumer and letting the aggregator get the messages and then deliver them to their ultimate destinations

Comments?

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "William Tam (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43850#action_43850 ] 

William Tam commented on CAMEL-642:
-----------------------------------

I'm looking into ti.

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CAMEL-642) jms aggregation does not work

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

William Tam updated CAMEL-642:
------------------------------

    Attachment: AggregatedJmsRouteTest.patch.txt

when debug logging is enabled, i sometimes get this failure (but i at least get one message delivered).  please see my patch that add a wait in the test.

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CAMEL-642) jms aggregation does not work

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

William Tam updated CAMEL-642:
------------------------------

    Attachment: patch.txt

The problem is we shouldn't create eventdrivenroute if it is an aggregator.  Otherwise, we see the race condition that marat mentioned.   If we don't wrap aggregator with an interceptor, it normally invokes the "addRoutes" method in AggregatorType and EventDrienRoute will not be added.   But if we do wrap with an interceptor, the interceptor becomes the first node and it will create an event drive route.   Attached a patch that sets a flag in the routecontext.  if a route has been added, it won't try to add an event driven route.

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>         Attachments: patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CAMEL-642) jms aggregation does not work

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

Claus Ibsen updated CAMEL-642:
------------------------------

        Fix Version/s: 1.4.0
    Affects Version/s: 1.4.0

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CAMEL-642) jms aggregation does not work

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

Willem Jiang updated CAMEL-642:
-------------------------------

              Summary: jms aggregation does not work  (was: jms aggregation do not work)
        Fix Version/s:     (was: 1.5.0)
    Affects Version/s:     (was: 1.4.0)

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43874#action_43874 ] 

Claus Ibsen commented on CAMEL-642:
-----------------------------------

Willem Jiang has commited the patch. However unit test fails on my local laptop:

{code}
-------------------------------------------------------------------------------
Test set: org.apache.camel.component.jms.AggregratedJmsRouteTest
-------------------------------------------------------------------------------
Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 28.204 sec <<< FAILURE!
testJmsMulticastAndAggregration(org.apache.camel.component.jms.AggregratedJmsRouteTest)  Time elapsed: 21.625 sec  <<< ERROR!
java.lang.AssertionError: mock:reply Received message count. Expected: <2> but was: <0>
            at org.apache.camel.component.mock.MockEndpoint.fail(MockEndpoint.java:662)
            at org.apache.camel.component.mock.MockEndpoint.assertEquals(MockEndpoint.java:644)
            at org.apache.camel.component.mock.MockEndpoint.assertIsSatisfied(MockEndpoint.java:223)
            at org.apache.camel.component.mock.MockEndpoint.assertIsSatisfied(MockEndpoint.java:199)
            at org.apache.camel.component.jms.AggregratedJmsRouteTest.testJmsMulticastAndAggregration(AggregratedJmsRouteTest.java:66)
{code}

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>         Attachments: defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (CAMEL-642) jms aggregation does not work

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

Willem Jiang reassigned CAMEL-642:
----------------------------------

    Assignee: Willem Jiang

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>         Attachments: defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CAMEL-642) jms aggregation does not work

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

William Tam updated CAMEL-642:
------------------------------

    Attachment: defaultcamelcontext_patch.txt

also, need the second patch  to fix a NPE where routes can be uninitialized.

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>         Attachments: defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CAMEL-642) jms aggregation does not work

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

Claus Ibsen resolved CAMEL-642.
-------------------------------

    Resolution: Fixed

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "William Tam (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43930#action_43930 ] 

William Tam commented on CAMEL-642:
-----------------------------------

Claus, turn on debug log and run the test, search the log for "Routing Rules are".   See if you find something like:

2008-07-02 17:44:37,698 [main           ] DEBUG AggregratedJmsRouteTest        - Routing Rules are: [AggregatorRoute[Endpoint[jms:queue:test.b] -> sendTo(Endpoint[mock:result])],  ....

If you see "EventDrivenRoute" instead, that means you haven't picked up the fix.  Let me know.



> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "William Tam (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43876#action_43876 ] 

William Tam commented on CAMEL-642:
-----------------------------------

Claus, could you enable debug and attached the camel-test.log from the camel-jms/target?  Will have a look.

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>         Attachments: defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43934#action_43934 ] 

Claus Ibsen commented on CAMEL-642:
-----------------------------------

Yes it works now out-of-the-box with no svn diffs.

Thanks William for your hard work on this one.



> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-642) jms aggregation does not work

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43927#action_43927 ] 

Claus Ibsen commented on CAMEL-642:
-----------------------------------

If JMX is disable then it runs on my laptop

> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (CAMEL-642) jms aggregation does not work

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

Willem Jiang closed CAMEL-642.
------------------------------


> jms aggregation does not work
> -----------------------------
>
>                 Key: CAMEL-642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.4.0
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: AggregatedJmsRouteTest.patch.txt, defaultcamelcontext_patch.txt, patch.txt
>
>
> I found this issue when I test  Camel 1.4.0 RC2 kit, I just add a test case to show the error.
> https://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/AggregratedJmsRouteTest.java
> You can reproduce the error if you remove the x character from xtestJmsMulticastAndAggregration() method.
> BTW the test case works with the Camel 1.4.0 RC1.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.