[Migration operation] If connector has set factory-class
org.hornetq.core.remoting.impl.netty.NettyConnectorFactory then migration operation does
not translate it to Artemis equivalent
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Key: WFLY-5085
URL:
https://issues.jboss.org/browse/WFLY-5085
Project: WildFly
Issue Type: Bug
Components: JMS
Affects Versions: 10.0.0.Alpha6
Reporter: Miroslav Novak
Assignee: Jeff Mesnil
Fix For: 10.0.0.Beta2
We should migrate configuration like:
{code}
<connector name="myconnector">
...
<factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class>
</connector>
{code}
to:
{code}
<connector name="myconnector"
factory-class="org.apache.activemq.artemis.core.remoting.impl.netty.NettyConnector">
...
{code}
and not to:
{code}
<connector name="myconnector"
factory-class="org.hornetq.core.remoting.impl.netty.NettyConnectorFactory">
...
{code}
The same holds for InVMConnector.