Skip to content

jeremyross/camel-transacted-multicast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

camel-transacted-multicast

There seems to be a deadlock situation caused by using a multicast in a transacted context.

The following routes illustrate the problem:

from("direct:route1")
    .transacted()
    .to("direct:route2")
    .log("will never get here");

from("direct:route2")
    .multicast()
        .to("log:r.test", "log:r.test")
    .end();

Running

To run the example, simply type

mvn test

The route should get hung up and the test will not complete.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages