]
Pavel Jelinek moved JBEAP-316 to WFLY-4773:
-------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-4773 (was: JBEAP-316)
Workflow: GIT Pull Request workflow (was: CDW v1)
Affects Version/s: 9.0.0.CR2
(was: EAP 7.0.0.DR2)
Component/s: Batch
(was: Batch)
Target Release: (was: EAP 7.0.0.GA)
CLI pretends that it's possible to change JDBC job repository
JNDI name even for in-memory repository type
----------------------------------------------------------------------------------------------------------
Key: WFLY-4773
URL:
https://issues.jboss.org/browse/WFLY-4773
Project: WildFly
Issue Type: Bug
Components: Batch
Affects Versions: 9.0.0.CR2
Reporter: Pavel Jelinek
Assignee: Cheng Fang
Priority: Minor
{code}
[standalone@localhost:9990 /] /subsystem=batch:read-attribute(name=job-repository-type)
{
"outcome" => "success",
"result" => "in-memory"
}
[standalone@localhost:9990 /]
/subsystem=batch/job-repository=jdbc:write-attribute(name=jndi-name,value=java:jboss/datasources/ExampleDS)
{
"outcome" => "success",
"response-headers" => {
"operation-requires-reload" => true,
"process-state" => "reload-required"
}
}
[standalone@localhost:9990 /]
/subsystem=batch/job-repository=jdbc:read-attribute(name=jndi-name)
{
"outcome" => "success",
"result" => "java:jboss/datasources/ExampleDS",
"response-headers" => {"process-state" =>
"reload-required"}
}
[standalone@localhost:9990 /] :reload
{
"outcome" => "success",
"result" => undefined
}
[standalone@localhost:9990 /]
/subsystem=batch/job-repository=jdbc:read-attribute(name=jndi-name)
{
"outcome" => "success",
"result" => undefined
}
{code}