]
Ramesh Reddy updated WFLY-6353:
-------------------------------
Summary: Provide support for "slot" property with
"resource-adapter" creation CLI (was: Provide support for adding
"slot" property with "resource-adapter" creation CLI script)
Provide support for "slot" property with
"resource-adapter" creation CLI
------------------------------------------------------------------------
Key: WFLY-6353
URL:
https://issues.jboss.org/browse/WFLY-6353
Project: WildFly
Issue Type: Bug
Components: CLI
Affects Versions: 9.0.2.Final
Reporter: Ramesh Reddy
Assignee: Alexey Loubyansky
Currently when one adds a resource-adapter using the CLI using the module the
"slot" property is allowed in the standalone.xml file. For ex:
{code}
<subsystem xmlns="urn:jboss:domain:resource-adapters:3.0">
<resource-adapters>
<resource-adapter id="file">
<module slot="34"
id="org.jboss.teiid.resource-adapter.file"/>
</resource-adapter>
</resource-adapters>
</subsystem>
{code}
However the same is added through CLI like
{code}
/subsystem=resource-adapters/resource-adapter=file:add(module=org.jboss.teiid.resource-adapter.file,
slot=34)
{code}
it will fail, this should be corrected.