[jboss-jira] [JBoss JIRA] (WFLY-9987) The attribute 'driver-datasource-class-name' is missing from 'get-installed-driver' operation
Kabir Khan (JIRA)
issues at jboss.org
Wed Apr 11 05:25:00 EDT 2018
[ https://issues.jboss.org/browse/WFLY-9987?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Kabir Khan updated WFLY-9987:
-----------------------------
Fix Version/s: 13.0.0.Beta1
> The attribute 'driver-datasource-class-name' is missing from 'get-installed-driver' operation
> ---------------------------------------------------------------------------------------------
>
> Key: WFLY-9987
> URL: https://issues.jboss.org/browse/WFLY-9987
> Project: WildFly
> Issue Type: Enhancement
> Components: JCA
> Affects Versions: 12.0.0.Final
> Reporter: Lin Gao
> Assignee: Lin Gao
> Priority: Minor
> Fix For: 13.0.0.Beta1
>
>
> The attribute 'driver-datasource-class-name' is missing from 'get-installed-driver' operation:
> {code:java}
> [standalone at localhost:9990 /] /subsystem=datasources:get-installed-driver(driver-name=h2)
> {
> "outcome" => "success",
> "result" => [{
> "driver-name" => "h2",
> "deployment-name" => undefined,
> "driver-module-name" => "com.h2database.h2",
> "module-slot" => "main",
> "driver-xa-datasource-class-name" => "org.h2.jdbcx.JdbcDataSource",
> "driver-class-name" => "org.h2.Driver",
> "driver-major-version" => 1,
> "driver-minor-version" => 4,
> "jdbc-compliant" => true
> }]
> }
> {code}
> But it exists in the output of the operation: 'installed-drivers-list':
> {code:java}
> [standalone at localhost:9990 /] /subsystem=datasources:installed-drivers-list()
> {
> "outcome" => "success",
> "result" => [{
> "driver-name" => "h2",
> "deployment-name" => undefined,
> "driver-module-name" => "com.h2database.h2",
> "module-slot" => "main",
> "driver-datasource-class-name" => "", <!--- HERE IT IS -->
> "driver-xa-datasource-class-name" => "org.h2.jdbcx.JdbcDataSource",
> "driver-class-name" => "org.h2.Driver",
> "driver-major-version" => 1,
> "driver-minor-version" => 4,
> "jdbc-compliant" => true
> }]
> }
> {code}
> It should be better to keep these information consistent.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
More information about the jboss-jira
mailing list