-
Story
-
Resolution: Unresolved
-
Minor
-
None
-
1.9.0.GA
-
None
-
False
-
False
-
High
-
-
Undefined
-
With the AMQP producer when the message is sent to a destination which represent a wildcard destination, the producer is stuck and not able to send the message.
As per the documentation in the topic "12.1.5. Address pattern matching" in [1] configure the wildcard as below foo/*
router
{ mode: standalone id: routerToBroker workerThreads: 4 }
listener
{ role: normal host: 0.0.0.0 port: 5672 linkCapacity: 1000 }
log
{ module: DEFAULT enable: trace+ timestamp: true }
address
{ prefix: foo/* waypoint: yes }
autoLink
{ addr: foo/* dir: in connection: myfirstbrokerConnector }
autoLink
{ addr: foo/* dir: out connection: myfirstbrokerConnector }
connector
{ host: 127.0.0.1 name: myfirstbrokerConnector port: 61616 role: route-container allowRedirect: no }
With the AMQP producer send the message to the destination foo/a, the producer is stuck and not able to send the message.
In the above configuration change foo/* to foo and from the producer send message to foo, then the message is sent successfully