]
Emmanuel Hugonnet updated WFLY-13136:
-------------------------------------
Priority: Critical (was: Major)
Can't create a Polled Connection Factory using Jgroups
------------------------------------------------------
Key: WFLY-13136
URL:
https://issues.redhat.com/browse/WFLY-13136
Project: WildFly
Issue Type: Bug
Components: JMS
Affects Versions: 19.0.0.Beta2
Reporter: Emmanuel Hugonnet
Assignee: Emmanuel Hugonnet
Priority: Critical
When trying to configure a pooled connection factory with a JGroup Discovery Group it
fails withg the exception:
{noformat}
{
"outcome" => "failed",
"failure-description" => {
"WFLYCTL0412: Required services that are not installed:" =>
["jboss.messaging-activemq.bindings.discovery.dg-group1"],
"WFLYCTL0180: Services with missing/unavailable dependencies" =>
["jboss.messaging-activemq.jms.pooled-connection-factory.activemq-ra is missing
[jboss.messaging-activemq.bindings.discovery.dg-group1]"]
},
"rolled-back" => true
}
{noformat}
Reproducer:
- start in full-ha
{code:java}
/subsystem=messaging-activemq/discovery-group=dg-group1:add(initial-wait-timeout=30000,
jgroups-channel=ee, jgroups-cluster=artemis-cluster)
/subsystem=messaging-activemq/pooled-connection-factory=activemq-ra:add(transaction=xa,
entries=[java:/JmsXA, java:jboss/DefaultJMSConnectionFactory],discovery-group=dg-group1)
{code}